summaryrefslogtreecommitdiffstats
path: root/chromium/v8/tools/run.py
diff options
context:
space:
mode:
Diffstat (limited to 'chromium/v8/tools/run.py')
-rwxr-xr-xchromium/v8/tools/run.py12
1 files changed, 12 insertions, 0 deletions
diff --git a/chromium/v8/tools/run.py b/chromium/v8/tools/run.py
new file mode 100755
index 00000000000..5a656e19b59
--- /dev/null
+++ b/chromium/v8/tools/run.py
@@ -0,0 +1,12 @@
+#!/usr/bin/env python
+# Copyright 2014 the V8 project authors. All rights reserved.
+# Use of this source code is governed by a BSD-style license that can be
+# found in the LICENSE file.
+
+"""This program wraps an arbitrary command since gn currently can only execute
+scripts."""
+
+import subprocess
+import sys
+
+sys.exit(subprocess.call(sys.argv[1:]))