| Casey Dahlin | ed2d1d2 | 2024-11-12 22:56:16 +0000 | [diff] [blame] | 1 | # Copyright 2024 The Fuchsia Authors. All rights reserved. |
| 2 | # Use of this source code is governed by a BSD-style license that can be |
| 3 | # found in the LICENSE file. |
| 4 | |
| 5 | import("//build/rust/rustc_library.gni") |
| 6 | |
| 7 | rustc_library("local") { |
| 8 | name = "fdomain_local" |
| Sarah Chan | 64bf58d | 2025-12-06 16:25:07 -0800 | [diff] [blame] | 9 | edition = "2024" |
| Casey Dahlin | ed2d1d2 | 2024-11-12 22:56:16 +0000 | [diff] [blame] | 10 | with_unit_tests = true |
| 11 | |
| 12 | sources = [ "src/lib.rs" ] |
| 13 | |
| 14 | deps = [ |
| 15 | "//sdk/fidl/fuchsia.io:fuchsia.io_rust", |
| 16 | "//src/lib/fdomain/client", |
| 17 | "//src/lib/fdomain/container", |
| 18 | "//src/lib/fidl/rust/fidl", |
| 19 | "//src/lib/fuchsia-async", |
| 20 | "//third_party/rust_crates:futures", |
| 21 | ] |
| 22 | } |