forked from tensorflow/tflite-support
-
Notifications
You must be signed in to change notification settings - Fork 0
/
utf.BUILD
38 lines (38 loc) · 893 Bytes
/
utf.BUILD
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
30
31
32
33
34
35
36
37
38
cc_library(
name = "utf",
srcs = [
"libutf/rune.c",
"libutf/runestrcat.c",
"libutf/runestrchr.c",
"libutf/runestrcmp.c",
"libutf/runestrcpy.c",
"libutf/runestrdup.c",
"libutf/runestrecpy.c",
"libutf/runestrlen.c",
"libutf/runestrncat.c",
"libutf/runestrncmp.c",
"libutf/runestrncpy.c",
"libutf/runestrrchr.c",
"libutf/runestrstr.c",
"libutf/runetype.c",
"libutf/utfecpy.c",
"libutf/utflen.c",
"libutf/utfnlen.c",
"libutf/utfrrune.c",
"libutf/utfrune.c",
"libutf/utfutf.c",
],
hdrs = [
"libutf/plan9.h",
"libutf/utf.h",
"libutf/utfdef.h",
],
copts = [
"-Wno-parentheses",
],
includes = [
".",
"libutf",
],
visibility = ["//visibility:public"],
)