mirror of
https://github.com/denoland/deno.git
synced 2024-11-24 15:19:26 -05:00
deno.gni script locations absolute
This commit is contained in:
parent
24dfbd1568
commit
530e9feab2
1 changed files with 3 additions and 3 deletions
6
deno.gni
6
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",
|
||||
|
|
Loading…
Reference in a new issue