summaryrefslogtreecommitdiff
path: root/Android.bp
blob: 035eadf9a726f32d1dee3dc91270bb314558bf0d (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
//
// 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"],
}

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

// These cannot build in the PDK, because the PDK requires all libraries
// compile against SDK versions.
java_defaults {
    name: "bouncycastle-defaults",
    defaults: [
        "bouncycastle-errorprone-defaults",
    ],
    hostdex: true,
    target: {
        android: {
            product_variables: {
                pdk: {
                    enabled: false,
                },
            },
        },
    },
}

// 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 Android platform where it is important not to 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",
        "//external/wycheproof",
        "//libcore",
    ],
    apex_available: [
        "com.android.art.release",
        "com.android.art.debug",
    ],
    defaults: ["bouncycastle-defaults"],
    installable: true,

    srcs: [":bouncycastle_java_files"],

    libs: ["unsupportedappusage"],

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

// A guaranteed unstripped version of bouncycastle.
// The build system may or may not strip the bouncycastle jar, but this one will
// not be stripped. See b/24535627.
java_library {
    name: "bouncycastle-testdex",
    visibility: [
        "//art:__subpackages__",
    ],
    defaults: ["bouncycastle-defaults"],
    installable: true,

    srcs: [":bouncycastle_java_files"],

    libs: ["unsupportedappusage"],

    sdk_version: "none",
    system_modules: "art-module-intra-core-api-stubs-system-modules",
    dex_preopt: {
        enabled: false,
    },
    java_version: "1.7",
}

unbundled_visibility = [
    "//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/conscrypt",
    "//external/okhttp",
    "//external/robolectric-shadows",
    "//external/robolectric-shadows/robolectric",
    "//external/robolectric-shadows/shadows/supportv4",
    "//external/robolectric-shadows/shadows/httpclient",
    "//frameworks/opt/net/wifi/service",
    "//frameworks/opt/net/wifi/tests/wifitests",
    "//libcore",
    "//system/extras/verity",
]

// 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",
    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",
}

// 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"],
}

// Bouncycastle filegroup for use by platform/packages/modules/IPsec project.
//
// Specifically, SHA1Digest and MD4Digest (and their dependencies) must be used by IKEv2 to support
// legacy authentication methods.
filegroup {
    name: "bouncycastle_ike_digests",
    visibility: ["//packages/modules/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",
    ],
}