mirror of
https://github.com/valitydev/osquery-1.git
synced 2024-11-07 18:08:53 +00:00
53626785a2
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
43 lines
1.2 KiB
Python
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"],
|
|
)
|