blob: 582f5a212de3a97c9c9d4c181757b818aa5345e6 [file] [log] [blame]
# 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.
group("cpp") {
public_deps = [ ":client" ]
}
source_set("client") {
sources = [
"network_device_client.cc",
"network_device_client.h",
]
public_deps = [
"//sdk/fidl/fuchsia.hardware.network",
"//src/lib/fxl",
"//zircon/public/lib/async-cpp",
"//zircon/public/lib/fbl",
"//zircon/system/ulib/async-loop:async-loop-cpp",
"//zircon/system/ulib/fzl",
]
}
executable("cpp-test") {
testonly = true
sources = [ "network_device_client_test.cc" ]
deps = [
":client",
"//sdk/fidl/fuchsia.net.tun",
"//sdk/lib/sys/cpp",
"//src/lib/fxl",
"//src/lib/fxl/test:gtest_main",
"//src/lib/testing/loop_fixture",
"//src/lib/testing/predicates",
"//zircon/public/lib/fbl",
"//zircon/system/ulib/async-loop:async-loop-cpp",
"//zircon/system/ulib/fzl",
]
}
group("tests") {
testonly = true
public_deps = [ ":cpp-test" ]
}