osquery-1/osquery/numeric_monitoring/BUCK
George Guliashvili a6069b85bc Remove duplication of the target names (#5391)
Summary:
Pull Request resolved: https://github.com/facebook/osquery/pull/5391

Make target names unique

Reviewed By: marekcirkos

Differential Revision: D13785378

fbshipit-source-id: 5bdf02d57ecbf574a1376feb13d07331b43ff89d
2019-01-25 07:23:20 -08:00

34 lines
1.1 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:third_party.bzl", "osquery_tp_target")
osquery_cxx_library(
name = "numeric_monitoring",
srcs = [
"numeric_monitoring.cpp",
"plugin_interface.cpp",
"pre_aggregation_cache.cpp",
],
header_namespace = "osquery/numeric_monitoring",
exported_headers = [
"plugin_interface.h",
"pre_aggregation_cache.h",
],
tests = [
osquery_target("osquery/numeric_monitoring/tests:numeric_monitoring_tests"),
osquery_target("osquery/numeric_monitoring/tests:pre_aggregation_cache"),
],
visibility = ["PUBLIC"],
deps = [
osquery_target("osquery/core:core"),
osquery_target("osquery/utils:utils"),
osquery_tp_target("boost"),
],
)