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 /cli | |
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 'cli')
-rw-r--r-- | cli/BUILD.gn | 8 |
1 files changed, 0 insertions, 8 deletions
diff --git a/cli/BUILD.gn b/cli/BUILD.gn index 9a3cad2e1..0a6c9875e 100644 --- a/cli/BUILD.gn +++ b/cli/BUILD.gn @@ -247,10 +247,6 @@ bundle("main_bundle") { deps = [ ":deno_runtime_declaration", ":msg_ts", - ":write_gn_args", - ] - data = [ - "$target_gen_dir/gn_args.txt", ] } @@ -260,10 +256,6 @@ bundle("compiler_bundle") { deps = [ ":deno_runtime_declaration", ":msg_ts", - ":write_gn_args", - ] - data = [ - "$target_gen_dir/gn_args.txt", ] } |