-
Notifications
You must be signed in to change notification settings - Fork 11
Expand file tree
/
Copy pathAndroid.bp
More file actions
83 lines (76 loc) · 2.33 KB
/
Copy pathAndroid.bp
File metadata and controls
83 lines (76 loc) · 2.33 KB
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
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
// Copyright (C) 2022 Michael Goffioul <michael.goffioul@gmail.com>
// Copyright (C) 2025 KonstaKANG
//
// SPDX-License-Identifier: Apache-2.0
cc_binary {
name: "android.hardware.media.c2-service-ffmpeg",
relative_install_path: "hw",
vendor: true,
srcs: [
"C2FFMPEGAudioDecodeComponent.cpp",
"C2FFMPEGAudioDecodeInterface.cpp",
"C2FFMPEGComponentInterface.cpp",
"C2FFMPEGComponentStore.cpp",
"C2FFMPEGVideoDecodeComponent.cpp",
"C2FFMPEGVideoDecodeInterface.cpp",
"main.cpp",
],
shared_libs: [
"android.hardware.media.c2-V1-ndk",
"libavcodec",
"libavservices_minijail",
"libavutil",
"libbase",
"libbinder_ndk",
"libcodec2_aidl",
"libcodec2_hal_common",
"libcodec2_soft_common",
"libcodec2_vndk",
"libffmpeg_utils",
"liblog",
"libstagefright_foundation",
"libswresample",
"libswscale",
"libutils",
],
installable: false,
}
prebuilt_etc {
name: "android.hardware.media.c2-ffmpeg-default-seccomp_policy",
src: ":android.hardware.media.c2-default-seccomp_policy",
sub_dir: "seccomp_policy",
installable: false,
}
prebuilt_etc {
name: "android.hardware.media.c2-ffmpeg-extended-seccomp_policy",
src: "android.hardware.media.c2-ffmpeg-extended-seccomp_policy",
sub_dir: "seccomp_policy",
installable: false,
}
prebuilt_etc {
name: "android.hardware.media.c2-service-ffmpeg.rc",
src: "android.hardware.media.c2-service-ffmpeg.rc",
installable: false,
}
prebuilt_etc {
name: "android.hardware.media.c2-service-ffmpeg.xml",
src: "android.hardware.media.c2-service-ffmpeg.xml",
sub_dir: "vintf",
installable: false,
}
apex {
name: "com.android.hardware.media.c2.ffmpeg",
manifest: "apex_manifest.json",
file_contexts: "apex_file_contexts",
key: "com.android.hardware.key",
certificate: ":com.android.hardware.certificate",
updatable: false,
vendor: true,
binaries: ["android.hardware.media.c2-service-ffmpeg"],
prebuilts: [
"android.hardware.media.c2-ffmpeg-default-seccomp_policy",
"android.hardware.media.c2-ffmpeg-extended-seccomp_policy",
"android.hardware.media.c2-service-ffmpeg.rc",
"android.hardware.media.c2-service-ffmpeg.xml",
],
}