blob: 2b182212e6342644479e11fc49787fcdafe8bf0c [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/rust/rustc_library.gni")
import("//src/sys/build/components.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" ]
}
fuchsia_unittest_package("http-uri-ext-tests") {
deps = [ ":http-uri-ext_test" ]
}
group("tests") {
testonly = true
deps = [ ":http-uri-ext-tests" ]
}