summaryrefslogtreecommitdiff
path: root/core/BUILD.gn
diff options
context:
space:
mode:
Diffstat (limited to 'core/BUILD.gn')
-rw-r--r--core/BUILD.gn12
1 files changed, 12 insertions, 0 deletions
diff --git a/core/BUILD.gn b/core/BUILD.gn
index bf9d910c0..0f1eba8ca 100644
--- a/core/BUILD.gn
+++ b/core/BUILD.gn
@@ -7,6 +7,7 @@ group("default") {
":deno_core_http_bench",
":deno_core_http_bench_test",
":deno_core_test",
+ ":snapshot_creator",
]
}
@@ -77,3 +78,14 @@ rust_test("deno_core_http_bench_test") {
extern = http_bench_extern
extern_rlib = http_bench_extern_rlib
}
+
+rust_executable("snapshot_creator") {
+ source_root = "snapshot_creator.rs"
+ extern = [
+ {
+ label = ":deno"
+ crate_name = "deno"
+ crate_type = "rlib"
+ },
+ ]
+}