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