mirror of
https://github.com/gflags/gflags.git
synced 2025-04-03 20:45:03 +00:00
26 lines
629 B
Text
26 lines
629 B
Text
# Bazel (http://bazel.io/) BUILD file for gflags.
|
|
#
|
|
# See INSTALL.md for instructions for adding gflags to a Bazel workspace.
|
|
|
|
licenses(["notice"])
|
|
|
|
exports_files([
|
|
"src/gflags_completions.sh",
|
|
"COPYING.txt",
|
|
])
|
|
|
|
config_setting(
|
|
name = "x64_windows",
|
|
values = {"cpu": "x64_windows"},
|
|
)
|
|
|
|
config_setting(
|
|
name = "android",
|
|
values = {"crosstool_top": "//external:android/crosstool"},
|
|
)
|
|
|
|
load(":bazel/gflags.bzl", "gflags_library", "gflags_sources")
|
|
|
|
(hdrs, srcs) = gflags_sources(namespace=["google", "gflags"])
|
|
gflags_library(hdrs=hdrs, srcs=srcs, threads=0)
|
|
gflags_library(hdrs=hdrs, srcs=srcs, threads=1)
|