blob: 80c2e06cc7de5121197af6033be3424c9b655eaa [file] [log] [blame] [edit]
# Copyright 2024 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/components.gni")
import("//build/rust/rustc_library.gni")
rustc_library("testing") {
name = "attribution_testing"
edition = "2021"
testonly = true
deps = [
"//sdk/fidl/fuchsia.component:fuchsia.component_rust",
"//sdk/fidl/fuchsia.memory.attribution:fuchsia.memory.attribution_rust",
"//sdk/rust/zx",
"//src/lib/fidl/rust/fidl",
"//src/lib/mapped-vmo",
"//third_party/rust_crates:futures",
"//third_party/rust_crates:pin-project",
]
sources = [ "src/lib.rs" ]
}