deno/BUILD.gn

21 lines
324 B
Plaintext

import("//build_extra/rust/rust.gni")
group("default") {
testonly = true
deps = [
":hyper_hello",
"cli:cli_test",
"cli:deno",
"core:default",
"core/libdeno:libdeno_test",
]
}
rust_executable("hyper_hello") {
source_root = "tools/hyper_hello.rs"
extern_rlib = [
"hyper",
"ring",
]
}