blob: 3828cb1eb53b7b5ee75a8e93bbe552061672ff7c [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.
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 = [
"$zx/system/ulib/fit:headers",
]
deps = [
"$zx/system/ulib/fbl",
"$zx/system/ulib/fdio",
"$zx/system/ulib/fit",
"$zx/system/ulib/zircon",
"$zx/system/ulib/zx",
]
configs += [ "$zx_build/public/gn/config:static-libc++" ]
}