blob: 6ed264d381f2e7e93a7d4d88f1a4a85f8aee01ff [file] [log] [blame] [edit]
# Copyright 2020 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/fuzzing/fuzzer.gni")
import("//build/fuzzing/fuzzer_package.gni")
group("drivers") {
testonly = true
deps = [
"drivers/aml-canvas",
"drivers/aml-hdmi:aml-hdmi",
"drivers/amlogic-display",
"drivers/display",
"drivers/dsi-dw",
"drivers/fake:fake-display",
"drivers/goldfish-display",
"drivers/intel-i915",
"drivers/intel-i915-tgl",
"drivers/simple:simple.amd-kaveri",
"drivers/simple:simple.bochs",
"drivers/simple:simple.gga",
"drivers/simple:simple.intel",
"drivers/simple:simple.nv",
"drivers/simple:simple.vmware",
"drivers/ssd1306:ssd1306_driver",
]
}
group("tools") {
# Most bundle groupings in the Fuchsia build system are specified as testonly. As the build system
# does not provide a way to specify "tools not intended for shipping to end users", we mark this
# as `testonly` to achieve that purpose.
testonly = true
deps = [
"bin/display-tool",
"bin/display-tweak",
]
}
group("tests") {
testonly = true
deps = [
":display-fuzzers",
"bin/display-factory-test",
"bin/display-test:tests",
"bin/display-tweak:tests",
"drivers:tests",
"lib:tests",
]
}
fuzzer_package("display-fuzzers") {
cpp_fuzzers = [ "lib/edid:edid-fuzzer" ]
}