summaryrefslogtreecommitdiff
path: root/BUILD.gn
blob: 909d04ce590e9e2871d21f65f85bdfa995196da2 (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:cli_test",
    "cli:deno",
    "core:default",
    "core/libdeno:libdeno_test",
  ]
}

rust_executable("hyper_hello") {
  source_root = "tools/hyper_hello.rs"
  extern_rlib = [
    "hyper",
    "ring",
  ]
}