"lm_eval/tasks/scrolls/scrolls_summscreenfd.yaml" did not exist on "0bafcef0b6309ed357260f7c7603b8ca2c51f982"
icu.BUILD 571 Bytes
Newer Older
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
licenses(["notice"])
exports_files(["LICENSE"])

package(
    default_visibility = ["//visibility:public"],
)

cc_library(
    name = "icu4c",
    srcs = glob(
        [
            "icu4c/source/common/*.c",
            "icu4c/source/common/*.cpp",
            "icu4c/source/stubdata/*.cpp",
        ],
    ),
    hdrs = glob([
        "icu4c/source/common/*.h",
    ]) + glob([
        "icu4c/source/common/unicode/*.h",
    ]),
    copts = [
        "-DU_COMMON_IMPLEMENTATION",
        "-Wno-deprecated-declarations",
    ],
    linkopts = [
        "-ldl",
    ],
)