github.com/johnnyeven/libtools@v0.0.0-20191126065708-61829c1adf46/third_party/icu/BUILD.system (about)

     1  package(
     2      default_visibility = ["//visibility:public"],
     3  )
     4  
     5  licenses(["notice"])  # Apache 2.0
     6  
     7  filegroup(
     8      name = "icu4c/LICENSE",
     9  )
    10  
    11  filegroup(
    12      name = "icu4j/main/shared/licenses/LICENSE",
    13  )
    14  
    15  cc_library(
    16      name = "headers",
    17  )
    18  
    19  cc_library(
    20      name = "common",
    21      deps = [
    22          ":icuuc",
    23      ],
    24  )
    25  
    26  cc_library(
    27      name = "icuuc",
    28      linkopts = ["-licuuc"],
    29      visibility = ["//visibility:private"],
    30  )