forked from open-vela/frameworks_multimedia_media
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathAndroid.bp
41 lines (35 loc) · 844 Bytes
/
Android.bp
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
cc_library_static {
name: "libmediaclient",
vendor_available: true,
export_include_dirs: ["include"],
include_dirs: ["vendor/vela/frameworks/media/utils"],
srcs: [
"client/media_graph.c",
"client/media_proxy.c",
"client/media_policy.c",
"client/media_session.c",
"client/media_focus.c",
"client/media_dtmf.c",
"utils/*.c"
],
shared_libs: [
"libcutils",
],
cflags: [
"-DCONFIG_RPMSG_LOCAL_CPUNAME=\"droid\"",
"-DCONFIG_MEDIA_PROXY_LISTEN_STACKSIZE=4096",
"-DCONFIG_MEDIA_PROXY_LISTEN_PRIORITY=100"
],
}
cc_binary {
name: "mediatool",
srcs: ["media_tool.c"],
vendor: true,
static_libs: [
"libmediaclient",
],
shared_libs: [
"libcutils",
"libutils",
],
}