blob: b3c2d25784d0ee4a3510e9ee264e84c6c4e0bc57 [file] [log] [blame]
# Copyright 2021 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.
assert(is_host)
libs = [
"addr",
"buildid",
"compat_info",
"daemonize",
"discovery",
"doctor_utils",
"emulator_instance",
"errors",
"fastboot",
"fho",
"fidl-fuchsia-developer-ffx-ext",
"fuchsia-controller",
"isolate",
"manual_targets",
"metrics",
"netext",
"pbms",
"pkg",
"port_picker",
"protocols",
"rcs",
"schema",
"sdk",
"ssh",
"stream_util",
"symbol-index",
"tasks",
"testing",
"timeout",
"usb_fastboot_discovery",
"validation",
"version",
"writer",
"target",
]
group("tests") {
testonly = true
deps = []
foreach(lib, libs) {
deps += [ "${lib}:tests" ]
}
}
group("host_tests") {
testonly = true
deps = [ "e2e_emu:host_tests" ]
}
group("lib") {
testonly = true
deps = []
foreach(lib, libs) {
deps += [ lib ]
}
}