1
0
Fork 0
mirror of https://github.com/denoland/deno.git synced 2024-12-28 18:19:08 -05:00
denoland-deno/libdeno/deno.gni

41 lines
1.1 KiB
Text
Raw Normal View History

# Copyright 2018 the Deno authors. All rights reserved. MIT license.
import("//build/compiled_action.gni")
2018-11-27 17:21:05 -05:00
declare_args() {
# Use prebuilt V8 libraries from //prebuilt/
use_prebuilt_v8 = true
}
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"]
}
}