|  | # Copyright 2019 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("//build/test/test_package.gni") | 
|  |  | 
|  | rustc_library("element_management") { | 
|  | name = "element_management" | 
|  | with_unit_tests = true | 
|  | edition = "2018" | 
|  |  | 
|  | deps = [ | 
|  | "//sdk/fidl/fuchsia.component:fuchsia.component-rustc", | 
|  | "//sdk/fidl/fuchsia.data:fuchsia.data-rustc", | 
|  | "//sdk/fidl/fuchsia.io:fuchsia.io-rustc", | 
|  | "//sdk/fidl/fuchsia.mem:fuchsia.mem-rustc", | 
|  | "//sdk/fidl/fuchsia.session:fuchsia.session-rustc", | 
|  | "//sdk/fidl/fuchsia.sys:fuchsia.sys-rustc", | 
|  | "//sdk/fidl/fuchsia.sys2:fuchsia.sys2-rustc", | 
|  | "//src/lib/fdio/rust:fdio", | 
|  | "//src/lib/fidl/rust/fidl", | 
|  | "//src/lib/fidl_table_validation", | 
|  | "//src/lib/fuchsia-async", | 
|  | "//src/lib/fuchsia-component", | 
|  | "//src/lib/syslog/rust:syslog", | 
|  | "//src/lib/zircon/rust:fuchsia-zircon", | 
|  | "//src/session/lib/realm_management", | 
|  | "//src/sys/lib/cm_rust", | 
|  | "//third_party/rust_crates:anyhow", | 
|  | "//third_party/rust_crates:async-trait", | 
|  | "//third_party/rust_crates:futures", | 
|  | "//third_party/rust_crates:thiserror", | 
|  | ] | 
|  |  | 
|  | test_deps = [ | 
|  | "//sdk/fidl/fuchsia.intl:fuchsia.intl-rustc", | 
|  | "//src/lib/test_util", | 
|  | "//third_party/rust_crates:lazy_static", | 
|  | ] | 
|  | } | 
|  |  | 
|  | test_package("element_management_tests") { | 
|  | deps = [ ":element_management_test" ] | 
|  | tests = [ | 
|  | { | 
|  | name = "element_management_lib_test" | 
|  | }, | 
|  | ] | 
|  | } |