Home | History | Annotate | Download | only in SampleCode
      1 cc_test {
      2     name: "AMRWBEncTest",
      3     gtest: false,
      4 
      5     srcs: ["AMRWB_E_SAMPLE.c"],
      6 
      7     cflags: ["-Wall", "-Werror"],
      8 
      9     arch: {
     10         arm: {
     11             instruction_set: "arm",
     12         },
     13     },
     14 
     15     shared_libs: [
     16         "libdl",
     17         "liblog",
     18     ],
     19 
     20     static_libs: [
     21         "libstagefright_amrwbenc",
     22         "libstagefright_enc_common",
     23     ],
     24 
     25     sanitize: {
     26         cfi: true,
     27     },
     28 }
     29