aboutsummaryrefslogtreecommitdiff
path: root/BUILD
diff options
context:
space:
mode:
authorEugene Kliuchnikov <eustas@google.com>2016-08-24 11:54:07 +0200
committerGitHub <noreply@github.com>2016-08-24 11:54:07 +0200
commite7f47b94709ee4991b49103e6ada78a24d950893 (patch)
treeea1a9494c1c39587ead5a0317242fc2549179b16 /BUILD
parentf14b38d84f8208c1df1fe62f222fda1c1b634dcf (diff)
parent2cc33230f4583d788fee28979204c39f940eec14 (diff)
downloadbrotli-e7f47b94709ee4991b49103e6ada78a24d950893.zip
brotli-e7f47b94709ee4991b49103e6ada78a24d950893.tar.gz
brotli-e7f47b94709ee4991b49103e6ada78a24d950893.tar.bz2
Merge pull request #418 from PiotrSikora/bazel_cc_library
Bazel: use cc_library instead of cc_inc_library.
Diffstat (limited to 'BUILD')
-rw-r--r--BUILD7
1 files changed, 4 insertions, 3 deletions
diff --git a/BUILD b/BUILD
index be1af17..1c49ceb 100644
--- a/BUILD
+++ b/BUILD
@@ -58,18 +58,19 @@ filegroup(
srcs = glob(["enc/*.c"]),
)
-cc_inc_library(
+cc_library(
name = "brotli",
hdrs = [":public_headers"],
- prefix = "include",
+ copts = STRICT_C_OPTIONS,
+ includes = ["include"],
)
cc_library(
name = "brotli_common",
srcs = [":common_sources"],
hdrs = [":common_headers"],
- deps = [":brotli"],
copts = STRICT_C_OPTIONS,
+ deps = [":brotli"],
)
cc_library(