| # 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") |
| |
| rustc_library("account_common") { |
| name = "account_common" |
| edition = "2018" |
| with_unit_tests = true |
| |
| deps = [ |
| "//sdk/fidl/fuchsia.auth:fuchsia.auth-rustc", |
| "//sdk/fidl/fuchsia.identity.account:fuchsia.identity.account-rustc", |
| "//sdk/fidl/fuchsia.identity.authentication:fuchsia.identity.authentication-rustc", |
| "//src/identity/lib/identity_common", |
| "//src/lib/fidl/rust/fidl", |
| "//third_party/rust_crates:anyhow", |
| "//third_party/rust_crates:log", |
| "//third_party/rust_crates:serde", |
| "//third_party/rust_crates:thiserror", |
| ] |
| |
| sources = [ |
| "src/error.rs", |
| "src/identifiers.rs", |
| "src/lib.rs", |
| ] |
| } |