osquery-1/osquery/database/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

33 lines
983 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")
load("//tools/build_defs/oss/osquery:third_party.bzl", "osquery_tp_target")
osquery_cxx_library(
name = "database",
srcs = [
"database.cpp",
],
header_namespace = "osquery/database",
exported_headers = [
],
tests = [
osquery_target("osquery/database/tests:database_tests"),
osquery_target("osquery/database/tests:results"),
],
visibility = ["PUBLIC"],
deps = [
osquery_target("osquery/core:core"),
osquery_target("osquery/utils:utils"),
osquery_target("osquery/utils/conversions:conversions"),
osquery_tp_target("boost"),
],
exported_deps = [
],
)