mirror of
https://github.com/valitydev/osquery-1.git
synced 2024-11-07 09:58:54 +00:00
e7ae02c572
Summary: Pull Request resolved: https://github.com/facebook/osquery/pull/5474 To be able to exclude config:update plugin from osquery plugin sdk. Reviewed By: guliashvili Differential Revision: D14241686 fbshipit-source-id: e378718b1e79e3dbe314a676945c18d15d054a3d
34 lines
994 B
Python
34 lines
994 B
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")
|
|
|
|
osquery_cxx_library(
|
|
name = "config",
|
|
srcs = [
|
|
"config.cpp",
|
|
"packs.cpp",
|
|
],
|
|
header_namespace = "osquery/config",
|
|
exported_headers = [
|
|
"config.h",
|
|
],
|
|
link_whole = True,
|
|
tests = [
|
|
osquery_target("osquery/config/tests:config_tests"),
|
|
osquery_target("osquery/config/tests:packs"),
|
|
],
|
|
visibility = ["PUBLIC"],
|
|
deps = [
|
|
osquery_target("osquery:headers"),
|
|
osquery_target("osquery/filesystem:osquery_filesystem"),
|
|
osquery_target("osquery/hashing:hashing"),
|
|
osquery_target("osquery/utils:utils"),
|
|
osquery_target("osquery/utils/system:time"),
|
|
],
|
|
)
|