summaryrefslogtreecommitdiff
path: root/deno2/deno.gni
diff options
context:
space:
mode:
authorRyan Dahl <ry@tinyclouds.org>2018-06-18 16:02:08 +0200
committerRyan Dahl <ry@tinyclouds.org>2018-06-19 15:07:31 +0200
commitcc2ae2d316b039ba599e3a8d3aed168ad7e77b10 (patch)
tree9b96fafe8671b59aaa65ad182de984e09797eba4 /deno2/deno.gni
parent064d889af05365b3d2051f0db800adc1ad977f3a (diff)
Snapshot clean ups
- Don't call eval() in mock_runtime - not allowed - see js2c.py. - Don't use v8_use_external_startup_data - Move MakeSnapshot to snapshot_creator.cc - Use logging.h in from_snapshot.cc
Diffstat (limited to 'deno2/deno.gni')
-rw-r--r--deno2/deno.gni7
1 files changed, 0 insertions, 7 deletions
diff --git a/deno2/deno.gni b/deno2/deno.gni
index 186e84e85..66deaa96c 100644
--- a/deno2/deno.gni
+++ b/deno2/deno.gni
@@ -30,23 +30,16 @@ template("create_snapshot") {
data = []
exe = rebase_path(get_label_info(":snapshot_creator", "root_out_dir") +
"/snapshot_creator")
- natives_in_bin = "$root_out_dir/natives_blob.bin"
- snapshot_in_bin = "$root_out_dir/snapshot_blob.bin"
- natives_out_cc = "$target_gen_dir/natives${suffix}.cc"
snapshot_out_cc = "$target_gen_dir/snapshot${suffix}.cc"
sources = [
invoker.js,
]
outputs = [
- natives_out_cc,
snapshot_out_cc,
]
args = [
exe,
rebase_path(invoker.js, root_build_dir),
- rebase_path(natives_in_bin, root_build_dir),
- rebase_path(snapshot_in_bin, root_build_dir),
- rebase_path(natives_out_cc, root_build_dir),
rebase_path(snapshot_out_cc, root_build_dir),
]