Index: build/env_dump.py |
diff --git a/build/env_dump.py b/build/env_dump.py |
new file mode 100755 |
index 0000000000000000000000000000000000000000..fca89a54a73c3232ccff2851671ffaf45346c35a |
--- /dev/null |
+++ b/build/env_dump.py |
@@ -0,0 +1,42 @@ |
+#!/usr/bin/python |
+# Copyright 2013 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. |
+ |
+# This script can either source a file and dump the enironment changes done by |
+# it, or just simply dump the current environment as JSON into a file. |
+ |
+import json |
+import optparse |
+import os |
+import subprocess |
+import sys |
+ |
+ |
+def main(): |
+ parser = optparse.OptionParser() |
+ parser.add_option('-f', '--output-json', |
+ help='File to dump the environment as JSON into.') |
+ parser.add_option( |
+ '-d', '--dump-mode', action='store_true', |
+ help='Dump the environment to the file and exit immediately.') |
+ |
+ options, args = parser.parse_args() |
+ if not options.output_json: |
+ parser.error('Requires --output-json option.') |
+ |
+ if options.dump_mode or not args: |
+ with open(options.output_json, 'w') as f: |
iannucci
2013/09/14 00:23:31
Actually, I would do
if options.dump_mode:
if a
|
+ json.dump(dict(os.environ), f) |
+ else: |
+ envsetup_cmd = ' '.join(args) |
+ full_cmd = [ |
+ 'bash', '-c', |
+ '. %s; ./%s -d -f %s' % (envsetup_cmd, __file__, options.output_json)] |
+ ret = subprocess.call(full_cmd) |
+ if ret: |
+ sys.exit('Error running %s and dumping env', envsetup_cmd) |
+ |
+ |
+if __name__ == '__main__': |
+ sys.exit(main()) |