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
|
aidl_interface {
name: "android.automotive.computepipe.runner",
vendor_available: true,
srcs: [
"android/automotive/computepipe/runner/*.aidl",
"android/automotive/computepipe/*.aidl",
],
imports: [
"android.hardware.graphics.common",
],
stability: "vintf",
backend: {
java: {
enabled: false,
},
cpp: {
enabled: false,
},
},
versions: ["1"],
}
aidl_interface {
name: "android.automotive.computepipe.registry",
vendor_available: true,
imports: ["android.automotive.computepipe.runner"],
srcs: [
"android/automotive/computepipe/registry/*.aidl",
"android/automotive/computepipe/*.aidl",
],
stability: "vintf",
backend: {
java: {
enabled: false,
},
cpp: {
enabled: false,
},
},
versions: ["1"],
}
|