Home | History | Annotate | Download | only in libutf
      1 // We only build the static library at the moment.
      2 cc_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 }
     41