summaryrefslogtreecommitdiff
path: root/tools/gyp/test/actions-none/src/fake_cross.py
diff options
context:
space:
mode:
Diffstat (limited to 'tools/gyp/test/actions-none/src/fake_cross.py')
-rw-r--r--tools/gyp/test/actions-none/src/fake_cross.py12
1 files changed, 0 insertions, 12 deletions
diff --git a/tools/gyp/test/actions-none/src/fake_cross.py b/tools/gyp/test/actions-none/src/fake_cross.py
deleted file mode 100644
index 2913f66a68..0000000000
--- a/tools/gyp/test/actions-none/src/fake_cross.py
+++ /dev/null
@@ -1,12 +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], 'wb')
-for filename in sys.argv[1:-1]:
- fh.write(open(filename).read())
-fh.close()