Home | History | Annotate | Download | only in faultinjection
      1 cc_library_shared {
      2     name: "libcodec2_component_wrapper",
      3     vendor_available: true,
      4 
      5     srcs: [
      6         "C2ComponentWrapper.cpp",
      7         "SimpleMethodState.cpp",
      8     ],
      9 
     10     shared_libs: [
     11         "libcodec2",
     12         "libcodec2_vndk",
     13         "libcutils",
     14         "liblog",
     15         "libstagefright_foundation",
     16         "libutils",
     17     ],
     18 
     19     sanitize: {
     20         misc_undefined: [
     21             "unsigned-integer-overflow",
     22             "signed-integer-overflow",
     23         ],
     24         cfi: true,
     25     },
     26 
     27     ldflags: ["-Wl,-Bsymbolic"],
     28 }
     29 
     30