From a7bb8ccce85c6e8bd619cce32d34a5d372ef85b7 Mon Sep 17 00:00:00 2001 From: Yoshiya Hinosawa Date: Sat, 2 Mar 2019 09:33:28 +0900 Subject: Add Deno.version.gnArgs (#1845) To display specific build args passed to GN. --- tools/write_gn_args.py | 16 ++++++++++++++++ 1 file changed, 16 insertions(+) create mode 100644 tools/write_gn_args.py (limited to 'tools/write_gn_args.py') diff --git a/tools/write_gn_args.py b/tools/write_gn_args.py new file mode 100644 index 000000000..764dcc6c1 --- /dev/null +++ b/tools/write_gn_args.py @@ -0,0 +1,16 @@ +# Copyright 2018-2019 the Deno authors. All rights reserved. MIT license. +import os +import sys +import third_party +from util import run_output, build_path + +out_filename = sys.argv[1] + +args_list = run_output([ + third_party.gn_path, "args", + build_path(), "--list", "--short", "--overrides-only" +], + env=third_party.google_env()) + +with open(out_filename, "w") as f: + f.write(args_list) -- cgit v1.2.3