Home | History | Annotate | Download | only in libmedia
      1 cc_library_headers {
      2     name: "libmedia_headers",
      3     vendor_available: true,
      4     export_include_dirs: ["include"],
      5 }
      6 
      7 cc_library {
      8     name: "libmedia_helper",
      9     vendor_available: true,
     10     srcs: ["AudioParameter.cpp", "TypeConverter.cpp"],
     11     cflags: [
     12         "-Werror",
     13         "-Wno-error=deprecated-declarations",
     14         "-Wall",
     15     ],
     16     shared: {
     17       shared_libs: ["libutils", "liblog"],
     18     },
     19     clang: true,
     20 }
     21