summaryrefslogtreecommitdiff
path: root/tools/gyp/test/external-cross-compile/src/fake_cross.py
diff options
context:
space:
mode:
Diffstat (limited to 'tools/gyp/test/external-cross-compile/src/fake_cross.py')
-rw-r--r--tools/gyp/test/external-cross-compile/src/fake_cross.py18
1 files changed, 0 insertions, 18 deletions
diff --git a/tools/gyp/test/external-cross-compile/src/fake_cross.py b/tools/gyp/test/external-cross-compile/src/fake_cross.py
deleted file mode 100644
index 05eacc6a63..0000000000
--- a/tools/gyp/test/external-cross-compile/src/fake_cross.py
+++ /dev/null
@@ -1,18 +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
-
-fh = open(sys.argv[1], 'w')
-
-filenames = sys.argv[2:]
-
-for filename in filenames:
- subfile = open(filename)
- data = subfile.read()
- subfile.close()
- fh.write(data)
-
-fh.close()