Index: build/run.py |
diff --git a/build/run.py b/build/run.py |
new file mode 100755 |
index 0000000000000000000000000000000000000000..f2526b61222ae1f1dcb52da1c2009b7d034fc695 |
--- /dev/null |
+++ b/build/run.py |
@@ -0,0 +1,20 @@ |
+#!/usr/bin/env python |
+# Copyright (c) 2015 The Chromium Authors. All rights reserved. |
+# Use of this source code is governed by a BSD-style license that can be |
+# found in the LICENSE file. |
+ |
+"""Run a command. |
+ |
+Because GN is just that awesome. |
+""" |
+ |
+import subprocess |
+import sys |
+ |
+ |
+def Main(args): |
+ return subprocess.call(args) |
+ |
+ |
+if __name__ == '__main__': |
+ sys.exit(Main(sys.argv[1:])) |