summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--BUILD.gn6
1 files 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) ]