diff options
author | Ryan Dahl <ry@tinyclouds.org> | 2018-07-04 02:07:07 +0200 |
---|---|---|
committer | Ryan Dahl <ry@tinyclouds.org> | 2018-07-04 03:03:55 +0200 |
commit | 530e9feab25e4079cb9550114a709bc794edeebb (patch) | |
tree | 8f9e294190ffbab0f9a3bf381bf66906b5ea8ea5 | |
parent | 24dfbd15689405f78192a7fade026ded1ff8a5cf (diff) |
deno.gni script locations absolute
-rw-r--r-- | deno.gni | 6 |
1 files changed, 3 insertions, 3 deletions
@@ -1,7 +1,7 @@ template("run_node") { action(target_name) { forward_variables_from(invoker, "*") - script = "js/run_node.py" + script = "//js/run_node.py" } } @@ -26,7 +26,7 @@ template("create_snapshot") { ]) visibility = [ ":*" ] # Only targets in this file can depend on this. deps += [ ":snapshot_creator" ] - script = "third_party/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 = "third_party/v8/tools/run.py" + script = "//third_party/v8/tools/run.py" args = [ "rustc", |