0
0
Fork 0
mirror of https://github.com/denoland/deno.git synced 2024-11-01 09:24:20 -04:00
denoland-deno/libdeno/deno.gni

36 lines
995 B
Text
Raw Normal View History

# Copyright 2018 the Deno authors. All rights reserved. MIT license.
import("//build/compiled_action.gni")
2018-06-15 14:02:27 -04:00
template("run_node") {
action(target_name) {
forward_variables_from(invoker, "*")
script = "//tools/run_node.py"
2018-06-15 14:02:27 -04:00
}
}
# Template to generate different V8 snapshots based on different runtime flags.
template("snapshot") {
compiled_action(target_name) {
2018-06-15 14:02:27 -04:00
forward_variables_from(invoker,
[
"testonly",
"deps",
])
tool = "//libdeno:snapshot_creator"
2018-06-15 14:02:27 -04:00
visibility = [ ":*" ] # Only targets in this file can depend on this.
snapshot_out_bin = "$target_gen_dir/$target_name.bin"
inputs = [
invoker.source_root,
2018-06-15 14:02:27 -04:00
]
2018-06-15 14:02:27 -04:00
outputs = [
snapshot_out_bin,
2018-06-15 14:02:27 -04:00
]
args = rebase_path(outputs, root_build_dir) +
rebase_path(inputs, root_build_dir)
2018-06-15 14:02:27 -04:00
# To debug snapshotting problems:
# args += ["--trace-serializer"]
}
}