blob: 0d6ae4e3df0b303748a1d0643488be49650f5aec [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/bind/bind.gni")
import("//build/components.gni")
import("//build/drivers.gni")
import("//build/test.gni")
group("tests") {
testonly = true
deps = [ ":pkg" ]
}
test("runtime-composite-test") {
sources = [ "test.cc" ]
deps = [
"drivers:drivers",
"drivers:fuchsia.runtime.composite.test_cpp",
"//sdk/lib/device-watcher/cpp",
"//sdk/lib/driver_test_realm/simple",
"//src/lib/fxl/test:gtest_main",
]
}
fuchsia_unittest_package("pkg") {
package_name = "runtime-composite-test"
deps = [ ":runtime-composite-test" ]
}