blob: 3b35a69ba8dc75f2b3a05d555877683887daeec6 [file] [log] [blame]
# Copyright 2023 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_test.gni")
rustc_test("url_proptests") {
edition = "2021"
source_root = "src/url_proptests.rs"
deps = [
"//src/sys/lib/cm_fidl_validator",
"//src/sys/lib/cm_types",
"//third_party/rust_crates:lazy_static",
"//third_party/rust_crates:proptest",
"//third_party/rust_crates:url",
]
sources = [ "src/url_proptests.rs" ]
}
fuchsia_unittest_package("cm_fidl_validator_url_proptests") {
deps = [ ":url_proptests" ]
}
group("tests") {
testonly = true
deps = [ ":cm_fidl_validator_url_proptests" ]
}