osquery-1/osquery/utils/aws/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

32 lines
987 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 = "aws",
srcs = [
"aws_util.cpp",
],
header_namespace = "osquery/utils/aws",
exported_headers = [
"aws_util.h",
],
tests = [
osquery_target("osquery/utils/aws/tests:aws_tests"),
],
visibility = ["PUBLIC"],
deps = [
osquery_target("osquery/remote:http_client"),
osquery_target("osquery/remote/transports:transports_tls"),
osquery_target("osquery/utils/json:json"),
osquery_target("osquery/utils/status:status"),
osquery_tp_target("aws-sdk-cpp"),
],
)