blob: 6bc052d7e83f4514f6fe73ddec12a29eb012458d [file] [log] [blame]
# Copyright 2020 The Fuchsia Authors. All rights reserved.
# Use of this source code is governed by a BSD-style license that can be
# found in the LICENSE file.
import("//build/package.gni")
import("//build/rust/rustc_library.gni")
import("//build/test/test_package.gni")
rustc_library("http-uri-ext") {
name = "http_uri_ext"
version = "0.1.0"
edition = "2018"
with_unit_tests = true
deps = [
"//third_party/rust_crates:http",
"//third_party/rust_crates:thiserror",
]
sources = [ "src/lib.rs" ]
}
test_package("http-uri-ext-tests") {
deps = [ ":http-uri-ext_test" ]
tests = [
{
name = "http_uri_ext_lib_test"
},
]
}
group("tests") {
testonly = true
deps = [ ":http-uri-ext-tests" ]
}