mirror of
https://github.com/tensorflow/tensorflow.git
synced 2024-11-21 21:05:19 +00:00
813af36087
//third_party/icu/data was added which depends on a new icu target that was missing in the unbundled BUILD file. Signed-off-by: Jason Zaman <jason@perfinion.com>
31 lines
419 B
Plaintext
31 lines
419 B
Plaintext
package(
|
|
default_visibility = ["//visibility:public"],
|
|
)
|
|
|
|
licenses(["notice"]) # Apache 2.0
|
|
|
|
filegroup(
|
|
name = "icu4c/LICENSE",
|
|
)
|
|
|
|
filegroup(
|
|
name = "icu4j/main/shared/licenses/LICENSE",
|
|
)
|
|
|
|
cc_library(
|
|
name = "headers",
|
|
)
|
|
|
|
cc_library(
|
|
name = "common",
|
|
deps = [
|
|
":icuuc",
|
|
],
|
|
)
|
|
|
|
cc_library(
|
|
name = "icuuc",
|
|
linkopts = ["-licuuc"],
|
|
visibility = ["//visibility:private"],
|
|
)
|