diff options
author | Ryan Dahl <ry@tinyclouds.org> | 2018-12-01 01:53:37 -0500 |
---|---|---|
committer | Ryan Dahl <ry@tinyclouds.org> | 2018-12-03 13:44:21 -0800 |
commit | b39f4c146e7c13a7489e37b315a86e1a4a03a1a8 (patch) | |
tree | b943a4c19d57ee581c8efcc16b633754a4a34927 /BUILD.gn | |
parent | f727214db0677ebc31e0988287c71c517a858193 (diff) |
gn snapshot template's target_name should be target
Diffstat (limited to 'BUILD.gn')
-rw-r--r-- | BUILD.gn | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -113,8 +113,8 @@ ts_sources = [ group("deno_deps") { deps = [ - ":create_snapshot_deno", ":msg_rs", + ":snapshot_deno", "libdeno:libdeno", ] } @@ -210,7 +210,7 @@ rust_flatbuffer("msg_rs") { } # Generates $target_gen_dir/snapshot_deno.bin -create_snapshot("deno") { +snapshot("snapshot_deno") { js = "$target_gen_dir/bundle/main.js" source_map = "$target_gen_dir/bundle/main.js.map" deps = [ |