From cc2ae2d316b039ba599e3a8d3aed168ad7e77b10 Mon Sep 17 00:00:00 2001 From: Ryan Dahl Date: Mon, 18 Jun 2018 16:02:08 +0200 Subject: 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 --- deno2/deno.gni | 7 ------- 1 file changed, 7 deletions(-) (limited to 'deno2/deno.gni') 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), ] -- cgit v1.2.3