mirror of
https://github.com/denoland/deno.git
synced 2024-10-31 09:14:20 -04:00
20 lines
324 B
Text
20 lines
324 B
Text
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",
|
|
]
|
|
}
|