Home | History | Annotate | Download | only in test
      1 cc_test {
      2     name: "xaacdec",
      3 
      4     vendor_available: true,
      5     gtest: false,
      6 
      7     cflags: [
      8         "-O3",
      9         "-UARM_PROFILE_HW",
     10         "-UARM_PROFILE_BOARD",
     11         "-DECLIPSE",
     12 		"-DDRC_ENABLE",
     13 		"-DMULTICHANNEL_ENABLE",
     14 		"-DENABLE_DRC"
     15     ],
     16 
     17     include_dirs: [
     18         "external/libxaac/decoder/",
     19     ],
     20 
     21     srcs: [
     22 	"ixheaacd_error.c",
     23 	"ixheaacd_fileifc.c",
     24 	"ixheaacd_main.c",
     25 	"ixheaacd_metadata_read.c"
     26     ],
     27 
     28     static_libs: ["libxaacdec"],
     29 
     30     shared_libs: ["liblog"],
     31 }
     32