osquery-1/osquery/process/BUCK
Alexander Kindyakov 17850e3040 Let's use glibc:ld thirdparty dependency instead of linker flag -ldl
Summary: to be able to proxy it inside `osquery_tp_target` function.

Reviewed By: marekcirkos

Differential Revision: D14182918

fbshipit-source-id: d56b7135664ecd5afcc87b1c1cd2cde5394368a0
2019-02-25 03:05:40 -08:00

50 lines
1.3 KiB
Python

# Copyright (c) 2014-present, Facebook, Inc.
# All rights reserved.
#
# This source code is licensed as defined on the LICENSE file found in the
# root directory of this source tree.
load("//tools/build_defs/oss/osquery:cxx.bzl", "osquery_cxx_library")
load("//tools/build_defs/oss/osquery:native.bzl", "osquery_target")
load("//tools/build_defs/oss/osquery:platforms.bzl", "POSIX", "WINDOWS")
load("//tools/build_defs/oss/osquery:third_party.bzl", "osquery_tp_target")
osquery_cxx_library(
name = "process",
header_namespace = "osquery/process",
exported_headers = [
"process.h",
],
exported_platform_headers = [
(
WINDOWS,
[
"windows/process_ops.h",
],
),
],
platform_srcs = [
(
POSIX,
[
"posix/process.cpp",
"posix/process_ops.cpp",
],
),
(
WINDOWS,
[
"windows/process.cpp",
"windows/process_ops.cpp",
],
),
],
visibility = ["PUBLIC"],
deps = [
osquery_target("osquery:headers"),
osquery_target("osquery/utils/system:env"),
osquery_tp_target("boost"),
osquery_tp_target("glibc", "dl"),
],
)