You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
55 lines
1.2 KiB
55 lines
1.2 KiB
package {
|
|
// See: http://go/android-license-faq
|
|
// A large-scale-change added 'default_applicable_licenses' to import
|
|
// all of the 'license_kinds' from "frameworks_av_media_libmediaplayerservice_license"
|
|
// to get the below license kinds:
|
|
// SPDX-license-identifier-Apache-2.0
|
|
default_applicable_licenses: [
|
|
"frameworks_av_media_libmediaplayerservice_license",
|
|
],
|
|
}
|
|
|
|
cc_library_static {
|
|
name: "libplayerservice_datasource",
|
|
|
|
srcs: [
|
|
"PlayerServiceDataSourceFactory.cpp",
|
|
"PlayerServiceFileSource.cpp",
|
|
"PlayerServiceMediaHTTP.cpp",
|
|
],
|
|
|
|
header_libs: [
|
|
"media_ndk_headers",
|
|
"libmedia_headers",
|
|
],
|
|
|
|
shared_libs: [
|
|
"libdatasource",
|
|
"libdrmframework",
|
|
"liblog",
|
|
"libutils",
|
|
],
|
|
|
|
local_include_dirs: [
|
|
"include",
|
|
],
|
|
|
|
export_include_dirs: [
|
|
"include",
|
|
],
|
|
|
|
cflags: [
|
|
"-Werror",
|
|
"-Wno-error=deprecated-declarations",
|
|
"-Wall",
|
|
],
|
|
|
|
sanitize: {
|
|
misc_undefined: [
|
|
"unsigned-integer-overflow",
|
|
"signed-integer-overflow",
|
|
],
|
|
cfi: true,
|
|
},
|
|
}
|