blob: 71fa50b2282a11d2295a50a1c7a87cd046516989 [file] [log] [blame]
Dongwon Kang9c6f7902019-10-14 11:16:39 -07001cc_library_static {
2 name: "libplayerservice_datasource",
3
4 srcs: [
5 "PlayerServiceDataSourceFactory.cpp",
6 "PlayerServiceFileSource.cpp",
7 "PlayerServiceMediaHTTP.cpp",
8 ],
9
10 header_libs: [
11 "media_ndk_headers",
12 "libmedia_headers",
13 ],
14
15 shared_libs: [
16 "libdatasource",
17 "libdrmframework",
18 "liblog",
19 "libutils",
20 ],
21
22 local_include_dirs: [
23 "include",
24 ],
25
26 export_include_dirs: [
27 "include",
28 ],
29
30 cflags: [
31 "-Werror",
32 "-Wno-error=deprecated-declarations",
33 "-Wall",
34 ],
35
36 sanitize: {
37 misc_undefined: [
38 "unsigned-integer-overflow",
39 "signed-integer-overflow",
40 ],
41 cfi: true,
42 },
43}