0
0
Fork 0
mirror of https://github.com/denoland/deno.git synced 2025-02-08 07:16:56 -05:00
denoland-deno/BUILD.gn

21 lines
324 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 15:48:56 +02:00
"cli:cli_test",
"cli:deno",
"core:default",
2019-05-01 15:48:56 +02:00
"core/libdeno:libdeno_test",
2018-12-13 22:16:58 +01:00
]
2018-06-10 14:24:39 +02:00
}
rust_executable("hyper_hello") {
source_root = "tools/hyper_hello.rs"
extern_rlib = [
"hyper",
"ring",
]
}