| # 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" ] |
| } |