summaryrefslogtreecommitdiff
path: root/BUILD.gn
diff options
context:
space:
mode:
Diffstat (limited to 'BUILD.gn')
-rw-r--r--BUILD.gn9
1 files changed, 9 insertions, 0 deletions
diff --git a/BUILD.gn b/BUILD.gn
index ef20cd1d2..cac34120f 100644
--- a/BUILD.gn
+++ b/BUILD.gn
@@ -13,6 +13,7 @@ group("default") {
deps = [
":deno",
":deno_ns",
+ ":hyper_hello",
":test_cc",
":test_rs",
]
@@ -137,6 +138,14 @@ rust_executable("deno_ns") {
]
}
+rust_executable("hyper_hello") {
+ source_root = "tools/hyper_hello.rs"
+ extern = [
+ "$rust_build:hyper",
+ "$rust_build:ring"
+ ]
+}
+
rust_test("test_rs") {
source_root = "src/main.rs"
extern = main_extern