blob: 9e27b8b61fe5f4f4a7315b7c68b81cadc2cb23bf [file] [log] [blame]
# Copyright 2018 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/components.gni")
import("//build/rust/rustc_library.gni")
rustc_library("webpki-roots-fuchsia") {
name = "webpki-roots-fuchsia"
version = "0.1.0"
edition = "2021"
with_unit_tests = true
deps = [
"//third_party/rust_crates:base64",
"//third_party/rust_crates:lazy_static",
"//third_party/rust_crates:webpki",
]
sources = [ "src/lib.rs" ]
}
fuchsia_unittest_package("webpki-roots-fuchsia_tests") {
manifest = "meta/webpki_roots_fuchsia_lib_test.cml"
deps = [ ":webpki-roots-fuchsia_test" ]
test_type = "system"
}