mirror of
https://github.com/tensorflow/tensorflow.git
synced 2024-11-21 21:05:19 +00:00
93323537ac
See [CVE-2020-10531](https://nvd.nist.gov/vuln/detail/CVE-2020-10531), it's an integer overflow. PiperOrigin-RevId: 424908014 Change-Id: Ib8d6f8b527fb1fd9d887eaf487afc17d42333c8a
17 lines
714 B
Python
17 lines
714 B
Python
"""Loads a lightweight subset of the ICU library for Unicode processing."""
|
|
|
|
load("//third_party:repo.bzl", "tf_http_archive", "tf_mirror_urls")
|
|
|
|
# NOTE: If you upgrade this, generate the data files by following the
|
|
# instructions in third_party/icu/data/BUILD
|
|
def repo():
|
|
tf_http_archive(
|
|
name = "icu",
|
|
strip_prefix = "icu-release-69-1",
|
|
sha256 = "3144e17a612dda145aa0e4acb3caa27a5dae4e26edced64bc351c43d5004af53",
|
|
urls = tf_mirror_urls("https://github.com/unicode-org/icu/archive/release-69-1.zip"),
|
|
build_file = "//third_party/icu:icu.BUILD",
|
|
system_build_file = "//third_party/icu:BUILD.system",
|
|
patch_file = ["//third_party/icu:udata.patch"],
|
|
)
|