summaryrefslogtreecommitdiff
path: root/deps/gyp/test/external-cross-compile/src/tochar.py
diff options
context:
space:
mode:
Diffstat (limited to 'deps/gyp/test/external-cross-compile/src/tochar.py')
-rw-r--r--deps/gyp/test/external-cross-compile/src/tochar.py13
1 files changed, 0 insertions, 13 deletions
diff --git a/deps/gyp/test/external-cross-compile/src/tochar.py b/deps/gyp/test/external-cross-compile/src/tochar.py
deleted file mode 100644
index c0780d984f..0000000000
--- a/deps/gyp/test/external-cross-compile/src/tochar.py
+++ /dev/null
@@ -1,13 +0,0 @@
-#!/usr/bin/python
-# Copyright (c) 2012 Google Inc. All rights reserved.
-# Use of this source code is governed by a BSD-style license that can be
-# found in the LICENSE file.
-
-import sys
-
-src = open(sys.argv[1])
-dst = open(sys.argv[2], 'w')
-for ch in src.read():
- dst.write('%d,\n' % ord(ch))
-src.close()
-dst.close()