Home | History | Annotate | Download | only in cjson
      1 cc_library_static {
      2     name: "cjson",
      3     clang: true,
      4     srcs: [
      5         "cJSON.c",
      6     ],
      7     local_include_dirs: [
      8         "includes",
      9     ],
     10     export_include_dirs: [
     11         "includes",
     12     ],
     13 }
     14 
     15 cc_library_static {
     16     name: "cjson_ndk",
     17     clang: true,
     18     srcs: [
     19         "cJSON.c",
     20     ],
     21     local_include_dirs: [
     22         "includes",
     23     ],
     24     export_include_dirs: [
     25         "includes",
     26     ],
     27     sdk_version: "24",
     28 }
     29