blob: 34cf39dafb839744c3457bc123a00117beb4ab38 [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.
executable("serial-test") {
configs += [ "//build/unification/config:zircon-migrated" ]
sources = [ "serial-test.cc" ]
deps = [
"//sdk/fidl/fuchsia.hardware.serial:fuchsia.hardware.serial_llcpp",
"//sdk/lib/fdio",
]
# TODO(fxbug.dev/69585): This target uses raw zx::channel with LLCPP which is deprecated.
# Please migrate to typed channel APIs (fidl::ClientEnd<T>, fidl::ServerEnd<T>).
# See linked bug for details.
configs += [ "//build/cpp:fidl-llcpp-deprecated-raw-channels" ]
}