blob: 6b70469f60b7fa6af740b0370d52f7fa729ce083 [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/rust/rustc_library.gni")
import("//src/sys/build/components.gni")
rustc_library("webpki-roots-fuchsia") {
name = "webpki-roots-fuchsia"
version = "0.1.0"
edition = "2018"
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.cmx"
deps = [ ":webpki-roots-fuchsia_test" ]
}