diff options
author | Ryan Dahl <ry@tinyclouds.org> | 2019-08-05 18:00:45 -0400 |
---|---|---|
committer | GitHub <noreply@github.com> | 2019-08-05 18:00:45 -0400 |
commit | a517513182221aa351528cf15d28c449b49fea13 (patch) | |
tree | ca0bfbf99ec4b121a5e8175d484e70fb55df43bf /tools/write_gn_args.py | |
parent | ddee2dff14772ade16e282ad18eda6f5054ce94e (diff) |
Remove Deno.build.args feature (#2728)
This is a minor feature which complicates the build signifigantly.
Removing to ease refactoring the build system:
https://github.com/denoland/deno/issues/2608
Diffstat (limited to 'tools/write_gn_args.py')
-rw-r--r-- | tools/write_gn_args.py | 18 |
1 files changed, 0 insertions, 18 deletions
diff --git a/tools/write_gn_args.py b/tools/write_gn_args.py deleted file mode 100644 index 145de4f49..000000000 --- a/tools/write_gn_args.py +++ /dev/null @@ -1,18 +0,0 @@ -# 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" -], - quiet=True, - env=third_party.google_env(), - exit_on_fail=True).out - -with open(out_filename, "w") as f: - f.write(args_list) |