blob: 5e9d4943fff2eaebb611ad0c82e084086f285b47 [file] [log] [blame] [edit]
# Copyright 2020 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")
import("//build/testing/environments.gni")
rustc_library("fidl-fuchsia-update-ext") {
version = "0.0.1"
edition = "2018"
with_unit_tests = true
deps = [
"//sdk/fidl/fuchsia.update:fuchsia.update-rustc",
"//src/sys/pkg/lib/event-queue",
"//third_party/rust_crates:proptest",
]
}
test_package("fidl-fuchsia-update-ext-tests") {
deps = [ ":fidl-fuchsia-update-ext_test" ]
tests = [
{
name = "fidl_fuchsia_update_ext_lib_test"
dest = "fidl-fuchsia-update-ext-tests"
environments = basic_envs
},
]
}
group("tests") {
testonly = true
public_deps = [ ":fidl-fuchsia-update-ext-tests" ]
}