summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorRyan Dahl <ry@tinyclouds.org>2018-08-01 21:33:52 -0400
committerRyan Dahl <ry@tinyclouds.org>2018-08-02 12:49:40 -0400
commite30bdb71aa8b9902078e1ed8e7d014a68eb9eb2e (patch)
treeb3ead1c3124e6d4da4044f1d08f0907c68234730
parent193b3965ca14341ccf1870a444e93c1ead18103b (diff)
Fix snapshot build dependencies.
-rw-r--r--BUILD.gn6
1 files changed, 1 insertions, 5 deletions
diff --git a/BUILD.gn b/BUILD.gn
index 95c777f7f..bab200547 100644
--- a/BUILD.gn
+++ b/BUILD.gn
@@ -107,12 +107,9 @@ static_library("libdeno") {
sources = [
"src/from_snapshot.cc",
]
- data = [
+ inputs = [
"$target_gen_dir/snapshot_deno.bin",
]
- data_deps = [
- ":bundle",
- ]
deps = [
":create_snapshot_deno",
":deno_bindings",
@@ -276,5 +273,4 @@ create_snapshot("deno") {
create_snapshot("mock_runtime") {
testonly = true
js = "js/mock_runtime.js"
- deps = []
}