blob: 352edb0103f00f658ef11da4b9b79a1c5b03e4e6 [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.
executable("driver-registrar") {
sources = [ "driver-registrar.cc" ]
configs += [ "//build/unification/config:zircon-migrated" ]
deps = [
"//sdk/fidl/fuchsia.driver.registrar:fuchsia.driver.registrar_llcpp",
"//sdk/fidl/fuchsia.pkg",
"//sdk/lib/fdio",
"//sdk/lib/fidl/cpp",
"//zircon/public/lib/zx",
]
# 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" ]
}