Merge pull request #418 from PiotrSikora/bazel_cc_library

Bazel: use cc_library instead of cc_inc_library.
This commit is contained in:
Eugene Kliuchnikov 2016-08-24 11:54:07 +02:00 committed by GitHub
commit e7f47b9470

7
BUILD
View File

@ -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(