-
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathos_pickup.bp
More file actions
67 lines (58 loc) · 1.39 KB
/
os_pickup.bp
File metadata and controls
67 lines (58 loc) · 1.39 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
android_app_import {
name: "TrichromeLibrary",
product_specific: true,
certificate: ":chromium.certificate",
compile_multilib: "both",
dex_preopt: {
enabled: false,
},
arch: {
arm64: {
apk: "arm64/TrichromeLibrary6432.apk",
},
x86_64: {
apk: "x64/TrichromeLibrary6432.apk",
},
},
}
android_app_import {
name: "TrichromeWebView",
product_specific: true,
certificate: ":chromium.certificate",
compile_multilib: "both",
required: [
"libwebviewchromium_loader",
"libwebviewchromium_plat_support",
"TrichromeLibrary",
],
optional_uses_libs: ["androidx.window.extensions", "com.android.extensions.xr"],
overrides: ["webview"],
arch: {
arm64: {
apk: "arm64/TrichromeWebView6432.apk",
},
x86_64: {
apk: "x64/TrichromeWebView6432.apk",
},
},
}
android_app_import {
name: "TrichromeChrome",
product_specific: true,
certificate: ":chromium.certificate",
compile_multilib: "both",
required: ["TrichromeLibrary"],
optional_uses_libs: ["com.android.extensions.xr"],
overrides: [
"Browser2",
"QuickSearchBox",
],
arch: {
arm64: {
apk: "arm64/universal.apk",
},
x86_64: {
apk: "x64/universal.apk",
},
},
}