summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorRyan Dahl <ry@tinyclouds.org>2018-07-04 02:07:07 +0200
committerRyan Dahl <ry@tinyclouds.org>2018-07-04 03:03:55 +0200
commit530e9feab25e4079cb9550114a709bc794edeebb (patch)
tree8f9e294190ffbab0f9a3bf381bf66906b5ea8ea5
parent24dfbd15689405f78192a7fade026ded1ff8a5cf (diff)
deno.gni script locations absolute
-rw-r--r--deno.gni6
1 files changed, 3 insertions, 3 deletions
diff --git a/deno.gni b/deno.gni
index d5fbe8e2c..75fb6c887 100644
--- a/deno.gni
+++ b/deno.gni
@@ -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",