mirror of
https://github.com/google/brotli.git
synced 2025-01-13 09:50:08 +00:00
Merge pull request #418 from PiotrSikora/bazel_cc_library
Bazel: use cc_library instead of cc_inc_library.
This commit is contained in:
commit
e7f47b9470
7
BUILD
7
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(
|
||||
|
Loading…
Reference in New Issue
Block a user