blob: ccf4cee51031508f276c21294f84d838c2f9b5b8 [file] [log] [blame]
Dan Willemsen7d295312018-11-16 23:08:20 -08001// We only build the static library at the moment.
2cc_library_static {
3 name: "libutf",
4 srcs: [
5 "rune.c",
6 "runestrcat.c",
7 "runestrchr.c",
8 "runestrcmp.c",
9 "runestrcpy.c",
10 "runestrdup.c",
11 "runestrlen.c",
12 "runestrecpy.c",
13 "runestrncat.c",
14 "runestrncmp.c",
15 "runestrncpy.c",
16 "runestrrchr.c",
17 "runestrstr.c",
18 "runetype.c",
19 "utfecpy.c",
20 "utflen.c",
21 "utfnlen.c",
22 "utfrrune.c",
23 "utfrune.c",
24 "utfutf.c",
25 ],
26 cflags: [
27 "-O3",
28 "-Wall",
29 "-Wno-missing-braces",
30 "-Wno-parentheses",
31 "-Wno-switch",
32 ],
33 export_include_dirs: ["."],
34 arch: {
35 arm: {
36 instruction_set: "arm",
37 },
38 },
39 sdk_version: "14",
40}