1
0
Fork 0
mirror of https://github.com/denoland/deno.git synced 2025-01-24 08:00:10 -05:00
denoland-deno/build_extra/rust/rust.gni

189 lines
4.5 KiB
Text
Raw Normal View History

stdlib_label = "//build_extra/rust:stdlib"
template("run_rustc") {
action(target_name) {
assert(defined(invoker.source_root), "Must specify source_root")
forward_variables_from(invoker,
[
"cfg",
"crate_type",
"source_root",
"deps",
2018-07-06 05:33:32 -04:00
"extern",
"is_test",
])
if (defined(invoker.testonly)) {
testonly = invoker.testonly
}
if (defined(invoker.crate_name)) {
crate_name = invoker.crate_name
} else {
crate_name = target_name
}
sources = [
source_root,
]
outputs = []
script = "//third_party/v8/tools/run.py"
args = [
"rustc",
rebase_path(source_root, root_build_dir),
"--crate-name=$crate_name",
"--crate-type=$crate_type",
]
if (defined(is_test) && is_test) {
# Test outputs are executables which should be in root_out_dir.
output = "$root_out_dir/$crate_name"
args += [
"--test",
"-o",
rebase_path(output, root_build_dir),
]
outputs += [ output ]
} else {
# Non-test targets are handled differently.
# For unknown reasons emitting a depfile on tests doesn't work.
depfile = "$target_out_dir/$target_name.d"
args += [ "--emit=dep-info=" + rebase_path(depfile, root_build_dir) ]
if (crate_type == "staticlib") {
staticlib = "$target_out_dir/$crate_name.a"
outputs += [ staticlib ]
args += [ "--emit=link=" + rebase_path(staticlib, root_build_dir) ]
}
if (crate_type == "rlib" || crate_type == "bin") {
obj = "$target_out_dir/$crate_name.o"
outputs += [ obj ]
args += [ "--emit=obj=" + rebase_path(obj, root_build_dir) ]
}
if (crate_type == "rlib") {
rlib = "$target_out_dir/lib$crate_name.rlib"
outputs += [ rlib ]
args += [ "--emit=link=" + rebase_path(rlib, root_build_dir) ]
}
}
if (is_debug) {
args += [ "-g" ]
}
if (is_official_build) {
args += [ "-O" ]
}
if (defined(cfg)) {
foreach(c, cfg) {
args += [
"--cfg",
c,
]
}
}
if (!defined(deps)) {
deps = []
}
2018-07-06 05:33:32 -04:00
if (defined(extern)) {
deps += extern
foreach(label, extern) {
name = get_label_info(label, "name")
dir = get_label_info(label, "target_out_dir")
rlib = "$dir/lib$name.rlib"
args += [
"--extern",
2018-07-06 05:33:32 -04:00
"$name=" + rebase_path(rlib, root_build_dir),
]
}
}
}
}
template("rust_component") {
rustc_name = target_name + "_rustc"
rustc_label = ":" + rustc_name
crate_name = target_name
run_rustc(rustc_name) {
forward_variables_from(invoker,
[
"crate_name",
"crate_type",
2018-07-06 05:33:32 -04:00
"extern",
"cfg",
"source_root",
"testonly",
])
if (!defined(invoker.crate_type)) {
crate_type = "rlib"
}
}
crate_outputs = get_target_outputs(rustc_label)
crate_obj = crate_outputs[0]
component(target_name) {
forward_variables_from(invoker,
[
"libs",
"deps",
"testonly",
])
if (!defined(deps)) {
deps = []
}
if (!defined(libs)) {
libs = []
}
libs += [ crate_obj ]
deps += [ rustc_label ]
}
}
template("rust_executable") {
bin_name = target_name + "_bin"
bin_label = ":" + bin_name
rust_component(bin_name) {
crate_type = "bin"
forward_variables_from(invoker, "*")
}
executable(target_name) {
forward_variables_from(invoker, "*")
if (!defined(deps)) {
deps = []
}
deps += [
bin_label,
stdlib_label,
]
2018-07-06 05:33:32 -04:00
if (defined(extern)) {
deps += extern
}
}
}
template("rust_test") {
run_rustc(target_name) {
crate_name = target_name
crate_type = "bin"
testonly = true
is_test = true
forward_variables_from(invoker,
[
"extern",
"cfg",
"source_root",
])
}
}