blob: c5a53d7966cebf8b8b6111eeb1aef53b2a0f497c [file] [log] [blame] [edit]
# 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")
group("test") {
testonly = true
deps = [ ":unittest" ]
}
test("unittest") {
output_dir = "$root_out_dir/zircon-migrated"
configs += [ "//build/unification/config:zircon-migrated" ]
sources = [ "unittest-test.cpp" ]
deps = [
"//sdk/lib/fdio",
"//zircon/system/ulib/unittest",
]
}
fuchsia_unittest_package("unittest-pkg") {
package_name = "unittest"
deps = [ ":unittest" ]
}
group("tests") {
testonly = true
deps = [ ":unittest-pkg" ]
}