blob: 1a178defa8093db96e909f079782c21dd4a9eaa4 [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.
library("process-launcher") {
sources = [
"launcher.cpp",
"provider.cpp",
]
configs += [ "$zx/public/gn/config:visibility_hidden" ]
deps = [
"$zx/system/fidl/fuchsia-io:c",
"$zx/system/fidl/fuchsia-ldsvc:c",
"$zx/system/fidl/fuchsia-process:c",
"$zx/system/ulib/async:async-cpp",
"$zx/system/ulib/fbl",
"$zx/system/ulib/fidl",
"$zx/system/ulib/launchpad",
"$zx/system/ulib/zircon",
"$zx/system/ulib/zx",
]
public_deps = [
# <lib/process-launcher/launcher.h> has #include <lib/svc/service.h>.
"$zx/system/ulib/svc:headers",
]
}