Home | History | Annotate | Download | only in config
      1 cc_library_static {
      2     name: "libaudiopolicyengine_config",
      3     export_include_dirs: ["include"],
      4     include_dirs: [
      5         "external/libxml2/include",
      6         "external/icu/icu4c/source/common",
      7     ],
      8     srcs: [
      9         "src/EngineConfig.cpp",
     10     ],
     11     cflags: [
     12         "-Wall",
     13         "-Werror",
     14         "-Wextra",
     15     ],
     16     shared_libs: [
     17         "libmedia_helper",
     18         "libandroidicu",
     19         "libxml2",
     20         "libutils",
     21         "liblog",
     22         "libcutils",
     23     ],
     24     static_libs: [
     25         "libaudiopolicycomponents",
     26     ],
     27     header_libs: [
     28         "libaudio_system_headers",
     29         "libaudiopolicycommon",
     30     ],
     31 }
     32