mirror of
https://github.com/valitydev/osquery-1.git
synced 2024-11-08 18:33:54 +00:00
17850e3040
Summary: to be able to proxy it inside `osquery_tp_target` function. Reviewed By: marekcirkos Differential Revision: D14182918 fbshipit-source-id: d56b7135664ecd5afcc87b1c1cd2cde5394368a0
50 lines
1.3 KiB
Python
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"),
|
|
],
|
|
)
|