Home | History | Annotate | Download | only in libogg
      1 cc_library_static {
      2     name: "libogg",
      3 
      4     srcs: [
      5         "src/bitwise.c",
      6         "src/framing.c",
      7     ],
      8 
      9     cflags: ["-Wall", "-Werror"],
     10 
     11     export_include_dirs: ["include"],
     12 
     13     sdk_version: "14",
     14     // TODO(ivanlozano) b/124978545
     15     // sanitize: {
     16     //     integer_overflow: true,
     17     //     misc_undefined: ["bounds"],
     18     // },
     19 }
     20