summaryrefslogtreecommitdiff
path: root/BUILD.gn
blob: 204d8837250a3b9ca9a361305b6acf829a952cc1 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
import("//build_extra/rust/rust.gni")

group("default") {
  testonly = true
  deps = [
    ":hyper_hello",
    "cli:deno",
    "cli:test_rs",
    "core:default",
    "core/libdeno:test_cc",
  ]
}

rust_executable("hyper_hello") {
  source_root = "tools/hyper_hello.rs"
  extern = [
    "$rust_build:hyper",
    "$rust_build:ring",
  ]
}