blob: 4e8b8d25fb393712e4101d8c4e1d9dbb6d1ab21a [file] [log] [blame]
# Copyright 2021 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/host.gni")
import("//build/rust/rustc_library.gni")
assert(is_host, "Assembly libraries are host-only")
rustc_library("test_keys") {
edition = "2021"
version = "0.1.0"
sources = [ "src/lib.rs" ]
inputs = [
"//third_party/android/platform/external/avb/test/data/testkey_atx_psk.pem",
]
}