From f2307346237831e049f06d5ff19af0590cfd377f Mon Sep 17 00:00:00 2001 From: Ryan Dahl Date: Tue, 11 Dec 2018 13:07:31 -0500 Subject: build: snapshot doesn't need source_map Continuation of the work done in c113df. --- libdeno/deno.gni | 7 +------ 1 file changed, 1 insertion(+), 6 deletions(-) (limited to 'libdeno/deno.gni') 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, ] -- cgit v1.2.3