diff options
author | Yoshiya Hinosawa <stibium121@gmail.com> | 2018-07-03 17:15:32 +0900 |
---|---|---|
committer | Ryan Dahl <ry@tinyclouds.org> | 2018-07-03 10:15:32 +0200 |
commit | 6f7ca760b8393a74992c9b7b6ddc0b65b8d8807c (patch) | |
tree | 57e7d43ff1059d90206b31fe84cccc6b59a8e2fa /deno.gni | |
parent | 6d288b63cddb3ea8548807895b3ac8e77baa2f51 (diff) |
move v8 to third_party/v8 (#322)
Diffstat (limited to 'deno.gni')
-rw-r--r-- | deno.gni | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -26,7 +26,7 @@ template("create_snapshot") { ]) visibility = [ ":*" ] # Only targets in this file can depend on this. deps += [ ":snapshot_creator" ] - script = "v8/tools/run.py" + script = "third_party/v8/tools/run.py" data = [] exe = rebase_path(get_label_info(":snapshot_creator", "root_out_dir") + "/snapshot_creator") @@ -66,7 +66,7 @@ template("rust_crate") { ] outputs = [] depfile = "$target_gen_dir/$target_name.d" - script = "v8/tools/run.py" + script = "third_party/v8/tools/run.py" args = [ "rustc", |