Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(3392)

Unified Diff: build/gn_run_binary.py

Issue 266613002: Add BUILD.gn for third_party/yasm. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: rebasd Created 6 years, 6 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « build/gn_helper_scripts.gni ('k') | third_party/yasm/BUILD.gn » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: build/gn_run_binary.py
diff --git a/build/gn_run_binary.py b/build/gn_run_binary.py
new file mode 100644
index 0000000000000000000000000000000000000000..834401136b74cb8b0d3085877ad8aac0bae3f127
--- /dev/null
+++ b/build/gn_run_binary.py
@@ -0,0 +1,28 @@
+# Copyright 2014 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.
+
+"""Helper script for GN to run an arbitrary binary.
+
+Run with:
+ python gn_run_binary.py <host_toolchain> <current_toolchain> \
+ <binary_name> [args ...]
+"""
+
+import sys
+import subprocess
+
+if sys.argv[1] == sys.argv[2]:
+ path = './'
+else:
+ # If cross-compiling, binaries for the host toolchain is prefixed by the
+ # toolchain definition name which is everything after the last colon in the
+ # toolcahin identifier.
+ host_toolchain_dir = sys.argv[1].split(':')[-1]
+ assert(host_toolchain_dir)
+ path = './' + host_toolchain_dir + '/'
+
+args = [ path + sys.argv[3] ]
+args.extend(sys.argv[4:])
+
+subprocess.call(args)
« no previous file with comments | « build/gn_helper_scripts.gni ('k') | third_party/yasm/BUILD.gn » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698