| # 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/rust/rustc_library.gni") | |
| rustc_library("ffx_pdk_lib") { | |
| name = "ffx_pdk_lib" | |
| edition = "2018" | |
| with_unit_tests = true | |
| deps = [ | |
| "//third_party/rust_crates:serde", | |
| "//third_party/rust_crates:serde_json", | |
| ] | |
| sources = [ | |
| "src/lib.rs", | |
| "src/lock.rs", | |
| ] | |
| } |