0
0
Fork 0
mirror of https://github.com/denoland/deno.git synced 2024-10-31 09:14:20 -04:00
denoland-deno/BUILD.gn

21 lines
343 B
Text
Raw Normal View History

import("//build_extra/rust/rust.gni")
2018-08-17 18:23:14 -04:00
group("default") {
2018-07-12 18:37:06 -04:00
testonly = true
deps = [
":hyper_hello",
2019-05-01 09:48:56 -04:00
"cli:cli_test",
"cli:deno",
"core:default",
2019-05-01 09:48:56 -04:00
"core/libdeno:libdeno_test",
2018-12-13 16:16:58 -05:00
]
2018-06-10 08:24:39 -04:00
}
rust_executable("hyper_hello") {
source_root = "tools/hyper_hello.rs"
extern = [
"$rust_build:hyper",
"$rust_build:ring",
]
}