blob: 3cab9cd1d366b8fa967238c69f113e227081d367 [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("events") {
output_name = "events-test"
configs += [ "//build/config:all_source" ]
sources = [ "events.c" ]
deps = [
"//sdk/lib/fdio",
"//src/zircon/lib/zircon",
"//zircon/system/ulib/zxtest",
]
}
fuchsia_unittest_package("events-test-pkg") {
package_name = "events-test"
deps = [ ":events" ]
}
group("tests") {
testonly = true
deps = [ ":events-test-pkg" ]
}