aboutsummaryrefslogtreecommitdiff
path: root/BUILD
diff options
context:
space:
mode:
Diffstat (limited to 'BUILD')
-rw-r--r--BUILD7
1 files changed, 4 insertions, 3 deletions
diff --git a/BUILD b/BUILD
index c0ac6d8..a95a9f5 100644
--- a/BUILD
+++ b/BUILD
@@ -56,18 +56,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(