diff options
author | Ryan Dahl <ry@tinyclouds.org> | 2018-12-11 13:07:31 -0500 |
---|---|---|
committer | Ryan Dahl <ry@tinyclouds.org> | 2018-12-11 15:06:21 -0500 |
commit | f2307346237831e049f06d5ff19af0590cfd377f (patch) | |
tree | e5de1ec03d937d85035a27d70d93c0189735d109 /libdeno/deno.gni | |
parent | c1de50b0ca9c6e1c8cd06347d19dd3db50db36d8 (diff) |
build: snapshot doesn't need source_map
Continuation of the work done in c113df.
Diffstat (limited to 'libdeno/deno.gni')
-rw-r--r-- | libdeno/deno.gni | 7 |
1 files changed, 1 insertions, 6 deletions
diff --git a/libdeno/deno.gni b/libdeno/deno.gni index 896902207..d81fedc72 100644 --- a/libdeno/deno.gni +++ b/libdeno/deno.gni @@ -25,14 +25,9 @@ template("snapshot") { visibility = [ ":*" ] # Only targets in this file can depend on this. snapshot_out_bin = "$target_gen_dir/$target_name.bin" inputs = [ - invoker.js, + invoker.source_root, ] - # TODO(ry) source_map should not be involved at this layer. Remove the - # following. - if (defined(invoker.source_map)) { - inputs += [ invoker.source_map ] - } outputs = [ snapshot_out_bin, ] |