blob: 9927ed32e6c2d30aff3636f38034172e4c473540 [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.
source_set("mexec") {
sources = [ "mexec.cc" ]
deps = [
"//sdk/fidl/fuchsia.device.manager:fuchsia.device.manager_llcpp",
"//sdk/lib/fdio",
"//zircon/public/lib/zircon-internal",
"//zircon/system/ulib/explicit-memory",
"//zircon/system/ulib/fbl",
"//zircon/system/ulib/zbitl",
]
public_deps = [ "//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" ]
}
group("tests") {
testonly = true
deps = [ "tests" ]
}