| # 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/unification/zx_library.gni") |
| |
| zx_library("devmgr-launcher") { |
| sdk = "shared" |
| sdk_headers = [ |
| "lib/devmgr-launcher/launch.h", |
| "lib/devmgr-launcher/processargs.h", |
| ] |
| shared = true |
| sources = [ "launcher.cc" ] |
| public_deps = [ "//sdk/lib/fit" ] |
| deps = [ |
| "//sdk/lib/fdio", |
| "//sdk/lib/fdio:fdio-spawn-actions", |
| "//sdk/lib/fit", |
| "//zircon/public/lib/fbl", |
| "//zircon/public/lib/zx", |
| ] |
| configs += [ "//build/config/fuchsia:static_cpp_standard_library" ] |
| } |