Home | History | Annotate | Download | only in config
      1 // Effect configuration
      2 cc_library {
      3     name: "libeffectsconfig",
      4     vendor_available: true,
      5 
      6     srcs: ["src/EffectsConfig.cpp"],
      7 
      8     cflags: [
      9         "-Wall",
     10         "-Werror",
     11     ],
     12 
     13     shared_libs: [
     14         "liblog",
     15         "libtinyxml2",
     16     ],
     17 
     18     header_libs: ["libaudio_system_headers"],
     19     export_header_lib_headers: ["libaudio_system_headers"],
     20 
     21     export_include_dirs: ["include"],
     22 }
     23