Home | History | Annotate | Download | only in javasqlite
      1 cc_library_shared {
      2     // This name is dictated by the fact that the SQLite code calls loadLibrary("sqlite_jni").
      3     name: "libsqlite_jni",
      4     host_supported: true,
      5     cflags: [
      6         "-Werror",
      7         "-Wno-error=sign-compare",
      8         "-Wno-unused-parameter",
      9     ],
     10     srcs: ["src/main/native/sqlite_jni.c"],
     11     static_libs: ["libsqlite_static_minimal"],
     12 
     13     sdk_version: "23",
     14 }
     15