forked from anatol/osquery
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathBUCK
47 lines (43 loc) · 1.44 KB
/
BUCK
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
# 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 = "glog",
platforms = [
"linux-x86_64",
"macos-x86_64",
"windows-x86_64",
],
sha256sums = {
"linux-x86_64": "1291104355f4373f22294d86eeb2e612d03ea1adbf7cbaef2083ca730e9df60c",
"macos-x86_64": "91ccd947175a029da61447cc2f871798dc3756bc3adfc178cc782e4714e5a712",
"windows-x86_64": "7c25024502db7e5ffaa0d7e851450946b9193fb093b815692763b619b4d55723",
},
platform_static_libs = {
"linux-x86_64": [
"lib/libglog.a",
],
"macos-x86_64": [
"lib/libglog.a",
],
"windows-x86_64": [
"lib/glog.lib",
],
},
linker_flags = [
],
deps = [
osquery_tp_target("gflags", "gflags"),
],
version = "0.3.5",
build = "0",
visibility = ["PUBLIC"],
)