blob: 582c7d0e1e4ec8b214a9994ba4182d2934f65090 [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/components.gni")
import("//build/test.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" ]
}