1package { 2 // See: http://go/android-license-faq 3 // A large-scale-change added 'default_applicable_licenses' to import 4 // all of the 'license_kinds' from "device_generic_goldfish-opengl_license" 5 // to get the below license kinds: 6 // SPDX-license-identifier-Apache-2.0 7 default_applicable_licenses: ["device_generic_goldfish-opengl_license"], 8} 9 10cc_library_shared { 11 name: "libcodec2_goldfish_vp9dec", 12 vendor: true, 13 defaults: [ 14 "libcodec2_goldfish-defaults", 15 ], 16 17 srcs: ["C2GoldfishVpxDec.cpp", 18 "goldfish_vpx_impl.cpp", 19 ], 20 21 shared_libs: ["libvpx", 22 "[email protected]", 23 "[email protected]", 24 "libgoldfish_codec2_store", 25 ], 26 27 header_libs: [ 28 "libgralloc_cb.ranchu", 29 ], 30 31 cflags: [ 32 "-DVP9", 33 ], 34} 35 36cc_library_shared { 37 name: "libcodec2_goldfish_vp8dec", 38 vendor: true, 39 defaults: [ 40 "libcodec2_goldfish-defaults", 41 ], 42 43 srcs: ["C2GoldfishVpxDec.cpp", 44 "goldfish_vpx_impl.cpp", 45 ], 46 47 48 header_libs: [ 49 "libgralloc_cb.ranchu", 50 ], 51 52 shared_libs: ["libvpx", 53 "[email protected]", 54 "[email protected]", 55 "libgoldfish_codec2_store", 56 ], 57} 58