osquery-1/third-party/lldpd/BUCK
Filipe Manco 53626785a2 Pass kwargs to osquery_tp_prebuilt_cxx_library (#5469)
Summary:
Pull Request resolved: https://github.com/facebook/osquery/pull/5469

This way we can specify extra arguments that are going to be added to the library, like exported_preprocessor_flags which is required by some libraries.

Reviewed By: marekcirkos, akindyakov

Differential Revision: D14220787

fbshipit-source-id: 652954e297e49147dfc9f77db8181e2c0e9e123f
2019-02-26 07:59:14 -08:00

43 lines
1.2 KiB
Python

# Copyright (c) 2014-present, Facebook, Inc.
# All rights reserved.
#
# This source code is licensed under both the Apache 2.0 license (found in the
# LICENSE file in the root directory of this source tree) and the GPLv2 (found
# in the COPYING file in the root directory of this source tree).
# You may select, at your option, one of the above-listed licenses.
# @generated
load("//tools/build_defs/oss/osquery:cxx.bzl", "osquery_cxx_library")
load("//tools/build_defs/oss/osquery:third_party.bzl", "osquery_tp_prebuilt_cxx_library")
load("//tools/build_defs/oss/osquery:third_party.bzl", "osquery_tp_target")
osquery_tp_prebuilt_cxx_library(
name = "lldpd",
platforms = [
"linux-x86_64",
"macos-x86_64",
],
sha256sums = {
"linux-x86_64": "27c0b6e6faf1863db025b95e8217e715cffc51b960b1d09e8fe9235b5ef203d8",
"macos-x86_64": "f9d5d5c0c2514e7d51914ffc747a068b8a82602ca62e44b65f02857f015e0d3f",
},
platform_static_libs = {
"linux-x86_64": [
"lib/liblldpctl.a",
],
"macos-x86_64": [
"lib/liblldpctl.a",
],
},
linker_flags = [
],
deps = [
],
version = "0.9.6",
build = "0",
visibility = ["PUBLIC"],
)