blob: c9e398e46c58c82d66946506e92a33ff29dbf581 [file] [log] [blame]
# 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/test.gni")
import("//src/sys/build/fuchsia_unittest_package.gni")
test("property") {
output_name = "property-test"
configs += [ "//build/unification/config:zircon-migrated" ]
sources = [ "property.cc" ]
deps = [
"//sdk/lib/fdio",
"//zircon/public/lib/zxtest",
"//zircon/system/ulib/test-utils",
]
}
fuchsia_unittest_package("property-test-pkg") {
package_name = "property-test"
deps = [ ":property" ]
}
group("tests") {
testonly = true
deps = [ ":property-test-pkg" ]
}