summaryrefslogtreecommitdiff
path: root/BUILD.gn
diff options
context:
space:
mode:
Diffstat (limited to 'BUILD.gn')
-rw-r--r--BUILD.gn9
1 files changed, 9 insertions, 0 deletions
diff --git a/BUILD.gn b/BUILD.gn
index c3dbbaf74..481999a37 100644
--- a/BUILD.gn
+++ b/BUILD.gn
@@ -107,6 +107,12 @@ static_library("libdeno") {
sources = [
"src/from_snapshot.cc",
]
+ data = [
+ "$target_gen_dir/snapshot_deno.bin",
+ ]
+ data_deps = [
+ ":bundle",
+ ]
deps = [
":create_snapshot_deno",
":deno_bindings",
@@ -139,6 +145,9 @@ v8_source_set("deno_base_test") {
"src/from_snapshot.cc",
"src/mock_runtime_test.cc",
]
+ data = [
+ "$target_gen_dir/snapshot_mock_runtime.bin",
+ ]
deps = [
":create_snapshot_mock_runtime",
":deno_base",