diff options
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, ] |