From 31de3b938c97dde8a5b695a509f89cb892ec6c4f Mon Sep 17 00:00:00 2001 From: Bert Belder Date: Fri, 26 Oct 2018 16:42:52 +0200 Subject: build: snapshot blob is an input for the snapshot object --- BUILD.gn | 6 ++---- 1 file changed, 2 insertions(+), 4 deletions(-) diff --git a/BUILD.gn b/BUILD.gn index b70db0f05..7c2362fd5 100644 --- a/BUILD.gn +++ b/BUILD.gn @@ -133,7 +133,7 @@ source_set("snapshot") { "src/snapshot.cc", ] configs += [ ":deno_config" ] - data = [ + inputs = [ "$target_gen_dir/snapshot_deno.bin", ] deps = [ @@ -152,9 +152,7 @@ source_set("snapshot") { # header file that contains the the sha256 hash of the snapshot. if (cc_wrapper != "" && cc_wrapper != "ccache") { hash_h = "$target_gen_dir/bundle/hash.h" - inputs = [ - hash_h, - ] + inputs += [ hash_h ] deps += [ ":bundle_hash_h" ] if (is_win) { cflags = [ "/FI" + rebase_path(hash_h, target_out_dir) ] -- cgit v1.2.3