95da0ba5b4
This avoids conflicting names in a couple of cases. 1. Within google, we want to sync files but not name them BUILD (since the structure doesn't match). 2. On case-insensitive filesystems, `build` may be used for a build directory. Naming `BUILD.bazel` avoids potentioal conflicts.
20 lines
341 B
Python
20 lines
341 B
Python
|
|
# Pulled from: https://github.com/cyb70289/utf8
|
|
|
|
cc_library(
|
|
name = "utf8_range",
|
|
hdrs = ["utf8_range.h"],
|
|
srcs = [
|
|
"naive.c",
|
|
"range2-neon.c",
|
|
"range2-sse.c",
|
|
],
|
|
visibility = ["//:__pkg__"],
|
|
)
|
|
|
|
filegroup(
|
|
name = "cmake_files",
|
|
srcs = glob(["*"]),
|
|
visibility = ["//cmake:__pkg__"],
|
|
)
|