blob: 72463260f06064265c29cf306f70702aebdb7a59 [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/board.gni")
group("drivers") {
deps = [
"bus",
"controller/sherlock",
"hw_accel",
"sensors",
"test_utils",
"usb_video",
]
}
group("tests") {
testonly = true
deps = [
"bus:tests",
"controller:tests",
"hw_accel:tests",
"sensors:tests",
"test_utils:tests",
"usb_video:tests",
]
}
# Use this target to include actual drivers and tests,
# but not supporting libraries.
group("all") {
testonly = true
deps = [
":tests",
"bus",
"controller/sherlock",
"hw_accel",
"sensors",
"usb_video",
]
}
group("sherlock") {
deps = [
"bus",
"controller/sherlock",
"hw_accel",
"sensors",
]
}