blob: b3023dbbc7770a0b79afb96742f41b418d79d289 [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.
declare_args() {
use_netstack3 = false
}
group("config") {
if (use_netstack3) {
deps = [
"netstack3",
"netstack3/config",
]
} else {
deps = [
"netstack",
"netstack/config",
]
}
}
group("tests") {
testonly = true
deps = [
"dhcp:dhcp_tests",
"dhcp:dhcpd_tests",
"dhcpd-cli:dhcpd_cli_tests",
"dns:dns_resolver_tests",
"dns:dns_tests",
"drivers:tests",
"http_client:tests",
"mdns/service:mdns_tests",
"net-cli:net-cli-tests",
"netcfg:netcfg_tests",
"netdump:tests",
"netstack:tests",
"netstack3:tests",
"testing/netemul:tests",
"tests",
"tools:tests",
"tun:tests",
]
}