blob: c16beb23cbff85d076b1782f3ce2a6d1e2783fc2 [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.
import("$zx_build/public/gn/library_shim.gni")
library("launchpad") {
shared = true
sources = [
"elf.c",
"fdio.c",
"launchpad.c",
"vmo.c",
]
deps = [
"$zx/system/ulib/elf-psabi",
"$zx/system/ulib/elfload",
"$zx/system/ulib/fdio",
"$zx/system/ulib/ldmsg",
"$zx/system/ulib/zircon",
"$zx/system/ulib/zircon-internal",
]
visibility = [
# Do not add anymore targets to this list.
# Instead of launchpad, use fdio_spawn or fuchsia.process.Launcher.
":*",
"test:*",
"$zx/system/core/bootsvc:*",
"$zx/system/ulib:*",
]
}