blob: f0d393aa05be23470bb398df0758b084de1959f5 [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/config/fuchsia/rules.gni")
import("//build/package.gni")
executable("tel-driver-unit-test") {
testonly = true
sources = [ "driver-unit-test.cc" ]
deps = [
"//garnet/public/lib/gtest",
"//sdk/fidl/fuchsia.hardware.telephony.transport:fuchsia.hardware.telephony.transport_llcpp",
"//sdk/lib/fdio",
"//sdk/lib/sys/cpp",
"//src/connectivity/telephony/drivers/qmi-usb-transport:qmi_driver_src",
"//src/devices/usb/lib/usb",
"//src/lib/ddk",
"//src/lib/fxl/test:gtest_main",
"//zircon/public/lib/fbl",
"//zircon/public/lib/sync",
"//zircon/public/lib/zx",
"//zircon/system/ulib/fzl",
]
# TODO(fxbug.dev/58162): delete the below and fix compiler warnings
configs += [ "//build/config:Wno-conversion" ]
}