2018-07-06 00:58:09 -04:00
|
|
|
import("//build_extra/rust/rust.gni")
|
2018-06-09 18:32:04 -04:00
|
|
|
|
2018-08-17 18:23:14 -04:00
|
|
|
group("default") {
|
2018-07-12 18:37:06 -04:00
|
|
|
testonly = true
|
|
|
|
deps = [
|
2018-10-20 22:56:16 -04:00
|
|
|
":hyper_hello",
|
2019-05-01 09:48:56 -04:00
|
|
|
"cli:cli_test",
|
2019-03-30 14:45:36 -04:00
|
|
|
"cli:deno",
|
2019-03-14 19:17:52 -04:00
|
|
|
"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
|
|
|
}
|
|
|
|
|
2018-10-23 19:39:31 -04:00
|
|
|
rust_executable("hyper_hello") {
|
|
|
|
source_root = "tools/hyper_hello.rs"
|
|
|
|
extern = [
|
|
|
|
"$rust_build:hyper",
|
|
|
|
"$rust_build:ring",
|
2018-07-16 21:33:57 -04:00
|
|
|
]
|
2018-10-23 19:39:31 -04:00
|
|
|
}
|