summaryrefslogtreecommitdiff
path: root/Android.bp
blob: 9abc0460fb3ffec04bd6756145fc6b84a5a6a828 (plain)
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
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
//
// Copyright (C) 2010 The Android Open Source Project
//
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
// You may obtain a copy of the License at
//
//      http://www.apache.org/licenses/LICENSE-2.0
//
// Unless required by applicable law or agreed to in writing, software
// distributed under the License is distributed on an "AS IS" BASIS,
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
// See the License for the specific language governing permissions and
// limitations under the License.
//

package {
    default_visibility: ["//visibility:private"],
    default_applicable_licenses: ["external_bouncycastle_license"],
}

// Added automatically by a large-scale-change that took the approach of
// 'apply every license found to every target'. While this makes sure we respect
// every license restriction, it may not be entirely correct.
//
// e.g. GPL in an MIT project might only apply to the contrib/ directory.
//
// Please consider splitting the single license below into multiple licenses,
// taking care not to lose any license_kind information, and overriding the
// default license using the 'licenses: [...]' property on targets as needed.
//
// For unused files, consider creating a 'fileGroup' with "//visibility:private"
// to attach the license to, and including a comment whether the files may be
// used in the current project.
// See: http://go/android-license-faq
license {
    name: "external_bouncycastle_license",
    visibility: [":__subpackages__"],
    license_kinds: [
        "SPDX-license-identifier-Apache-2.0",
        "SPDX-license-identifier-BSD",
        "SPDX-license-identifier-MIT",
    ],
    license_text: [
        "NOTICE",
    ],
}

java_defaults {
    name: "bouncycastle-errorprone-defaults",
    errorprone: {
        javacflags: [
            "-Xep:MissingOverride:OFF", // Ignore missing @Override.
        ],
    },
}

java_defaults {
    name: "bouncycastle-defaults",
    defaults: [
        "bouncycastle-errorprone-defaults",
    ],
    hostdex: true,

    lint: {
        warning_checks: ["SuspiciousIndentation"],
    },
    errorprone: {
        javacflags: [
            "-Xep:BoxedPrimitiveEquality:WARN",
            "-Xep:DoubleBraceInitialization:WARN",
            "-Xep:HashtableContains:WARN",
        ],
    },
}

// The src files for bouncycastle, used to generate core platform / intra-core
// API stubs.
filegroup {
    name: "bouncycastle_java_files",
    visibility: [
        "//libcore",
    ],
    srcs: ["repackaged/bcprov/src/main/java/**/*.java"],
}

// A bouncycastle library repackaged in com.android.org.bouncycastle for use
// in the ART module. Repackaging is needed to avoid conflict with the
// original org.bouncycastle package.
java_library {
    name: "bouncycastle",
    // Restrict visibility to only those targets that need to access it.
    visibility: [
        "//art/build/apex",
        "//art/build/sdk",
        "//external/wycheproof",
        "//libcore:__subpackages__",
        "//packages/modules/ArtPrebuilt",
    ],
    apex_available: [
        "com.android.art",
        "com.android.art.debug",
    ],
    min_sdk_version: "31",
    defaults: ["bouncycastle-defaults"],
    installable: true,

    srcs: [":bouncycastle_java_files"],

    libs: ["unsupportedappusage"],

    sdk_version: "none",
    system_modules: "art-module-intra-core-api-stubs-system-modules",
}

java_library_static {
    name: "bouncycastle-test-lib",
    visibility: [
        "//libcore",
        "//packages/modules/ArtPrebuilt",
    ],
    srcs: [
        "repackaged/bcprov/src/test/java/**/*.java",
    ],
    libs: [
        "bouncycastle",
        "junit",
        "platform-test-annotations",
    ],
    sdk_version: "none",
    system_modules: "art-module-intra-core-api-stubs-system-modules",
}

// A bouncycastle library repackaged in com.android.internal.org.bouncycastle
// for use in the Android platform where it is important not to conflict with
// the original org.bouncycastle package or the one in the ART module.
java_library {
    name: "bouncycastle-repackaged-unbundled",
    visibility: [
        "//cts/tests/libcore/wycheproof-bc",
        "//external/sl4a/Common",
        "//external/wycheproof",
        "//frameworks/base",
        "//frameworks/base/packages/Connectivity/tests/unit",
        "//frameworks/base/tests/net",
        "//packages/modules/Connectivity/tests/unit",
    ],
    defaults: ["bouncycastle-defaults"],
    installable: true,
    sdk_version: "core_current",
    srcs: [
        "repackaged_platform/bcpkix/src/main/java/**/*.java",
        "repackaged_platform/bcprov/src/main/java/**/*.java",
    ],
}

unbundled_visibility = [
    "//art/build/sdk",
    "//build/make/tools/signapk",
    "//build/make/tools/signtos",
    "//cts/hostsidetests/devicepolicy/app/DeviceOwner",
    "//cts/tests/libcore/okhttp",
    "//cts/tests/security",
    "//cts/tests/tests/keystore",
    "//external/android-key-attestation",
    "//external/conscrypt",
    "//external/okhttp",
    "//external/robolectric-shadows",
    "//external/robolectric-shadows/robolectric",
    "//external/robolectric-shadows/shadows/supportv4",
    "//external/robolectric-shadows/shadows/httpclient",
    "//external/robolectric",
    "//external/robolectric/robolectric",
    "//external/robolectric/shadows/supportv4",
    "//external/robolectric/shadows/httpclient",
    "//external/wycheproof",
    "//frameworks/opt/net/wifi/service",
    "//frameworks/opt/net/wifi/tests/wifitests",
    "//packages/apps/CertInstaller",
    "//packages/apps/KeyChain",
    "//packages/apps/RemoteProvisioner/tests/unittests",
    "//packages/modules/Connectivity/tests/cts/net",
    "//packages/modules/RemoteKeyProvisioning/app/tests/unit",
    "//packages/modules/Wifi/service",
    "//packages/modules/Wifi/service/tests/wifitests",
    "//libcore",
    "//system/extras/verity",
    "//system/security/identity/util",
    "//tools/security/remote_provisioning/attestation_testing",
    "//vendor:__subpackages__",
]

// A bouncycastle library in the original org.bouncycastle package for use
// outside of the platform. e.g. for host or in unbundled apps.
java_library {
    name: "bouncycastle-unbundled",
    visibility: unbundled_visibility,
    defaults: ["bouncycastle-defaults"],
    host_supported: true,

    srcs: ["bcprov/src/main/java/**/*.java"],
    exclude_srcs: [
        "bcprov/src/main/java/org/bouncycastle/asn1/ocsp/**/*.java",
    ],

    sdk_version: "core_current",
    min_sdk_version: "30",
    java_version: "1.7",
}

// Bouncycastle PKIX classes in the original org.bouncycastle package for use
// outside of the platform. e.g. for host or in unbundled apps / CTS tests.
java_library {
    name: "bouncycastle-bcpkix-unbundled",
    visibility: unbundled_visibility,
    defaults: ["bouncycastle-defaults"],
    host_supported: true,

    srcs: ["bcpkix/src/main/java/**/*.java"],
    exclude_srcs: ["bcpkix/src/main/java/org/bouncycastle/cert/ocsp/**/*.java"],
    libs: ["bouncycastle-unbundled"],

    sdk_version: "core_current",
    // b/267608166: Allow to be used by components targeting Java 11.
    java_version: "11",
}

// Bouncycastle OCSP classes in the original org.bouncycastle package for use
// outside of the platform. e.g. for host or in unbundled apps / CTS tests.
java_library_static {
    name: "bouncycastle-ocsp-unbundled",
    visibility: unbundled_visibility,
    defaults: ["bouncycastle-defaults"],
    host_supported: true,

    srcs: [
        "bcpkix/src/main/java/org/bouncycastle/cert/ocsp/**/*.java",
        "bcprov/src/main/java/org/bouncycastle/asn1/ocsp/**/*.java",
    ],
    libs: [
        "bouncycastle-unbundled",
        "bouncycastle-bcpkix-unbundled",
    ],

    sdk_version: "core_current",
}

// For compatibility with old bouncycastle-host name.
//
// When converting .mk files to .bp files do not change the visibility of this
// module, instead replace usages of this with bouncycastle-unbundled.
java_library_host {
    name: "bouncycastle-host",
    static_libs: ["bouncycastle-unbundled"],
}

java_test_host {
    name: "bouncycastle-host-tests",
    srcs: [
        "bcprov/src/test/java/**/*.java",
    ],
    test_options: {
        unit_test: true,
    },
    static_libs: [
        "bouncycastle-unbundled",
        "junit",
    ],
    test_suites: ["general-tests"],
}

// Bouncycastle subset for use by frameworks/opt/net/ike project.
//
// Avoids including the whole of bouncycastle_unbundled in ike.
//
// Specifically, SHA1Digest and MD4Digest (and their dependencies) must be used by IKEv2 to support
// legacy authentication methods.
java_library {
    name: "bouncycastle_ike_digests",
    visibility: [
        "//art/build/sdk",
        "//packages/modules/IPsec",
    ],
    apex_available: [
        "com.android.ipsec",
        "test_com.android.ipsec",
    ],
    srcs: [
        "bcprov/src/main/java/org/bouncycastle/crypto/Digest.java",
        "bcprov/src/main/java/org/bouncycastle/crypto/ExtendedDigest.java",
        "bcprov/src/main/java/org/bouncycastle/crypto/digests/EncodableDigest.java",
        "bcprov/src/main/java/org/bouncycastle/crypto/digests/GeneralDigest.java",
        "bcprov/src/main/java/org/bouncycastle/crypto/digests/MD4Digest.java",
        "bcprov/src/main/java/org/bouncycastle/crypto/digests/SHA1Digest.java",
        "bcprov/src/main/java/org/bouncycastle/util/Memoable.java",
        "bcprov/src/main/java/org/bouncycastle/util/Pack.java",
    ],
    sdk_version: "core_current",
}

// Bouncycastle for use by packages/modules/ExtServices project.
//
// Excludes directories not needed for ASN1*.java and X509* sources.
//
java_library {
    name: "bouncycastle-extservices-asn",
    visibility: [
        "//packages/modules/ExtServices",
    ],
    apex_available: [
        "com.android.extservices",
        "test_com.android.extservices",
    ],
    srcs: [
        "bcprov/src/main/java/org/bouncycastle/**/*.java",
    ],
    exclude_srcs: [
        "bcprov/src/main/java/org/bouncycastle/asn1/ocsp/**/*.java",
        "bcprov/src/main/java/org/bouncycastle/iana/**/*.java",
    ],
    sdk_version: "core_current",
    lint: {
        warning_checks: ["SuspiciousIndentation"],
    },
}

// Bouncycastle for use by packages/modules/Uwb project.
//
//Excludes directories not needed.
java_library {
    name: "bouncycastle-uwb",
    visibility: [
        "//packages/modules/Uwb/service",
    ],
    apex_available: [
        "com.android.uwb",
    ],
    srcs: [
        "bcprov/src/main/java/org/bouncycastle/**/*.java",
        "bcpkix/src/main/java/org/bouncycastle/cert/**/*.java",
        "bcpkix/src/main/java/org/bouncycastle/cms/**/*.java",
        "bcpkix/src/main/java/org/bouncycastle/operator/**/*.java",
    ],

    exclude_srcs: [
        "bcprov/src/main/java/org/bouncycastle/iana/**/*.java",
        "bcprov/src/main/java/org/bouncycastle/its/**/*.java",
    ],
    sdk_version: "core_current",
    lint: {
        warning_checks: ["SuspiciousIndentation"],
    },
}