blob: 96f242a1a8e0f4ae4d6bdb7dfe462963f9919ff4 [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")
group("tests") {
testonly = true
deps = [ ":backlight-test-pkg" ]
}
test("backlight-test") {
output_name = "backlight-test"
sources = [ "backlight-test.cc" ]
deps = [
"//sdk/fidl/fuchsia.hardware.backlight:fuchsia.hardware.backlight_cpp",
"//sdk/lib/component/incoming/cpp",
"//zircon/system/ulib/zxtest",
]
}
fuchsia_unittest_package("backlight-test-pkg") {
package_name = "backlight-test"
deps = [ ":backlight-test" ]
}