forked from google/conscrypt
-
Notifications
You must be signed in to change notification settings - Fork 0
/
build.gradle
304 lines (267 loc) · 11.2 KB
/
build.gradle
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
buildscript {
ext.android_tools = 'com.android.tools.build:gradle:3.1.3'
repositories {
google()
jcenter()
}
dependencies {
// This must be applied in the root project otherwise each subproject will
// have it in a different ClassLoader.
classpath android_tools
classpath 'biz.aQute.bnd:biz.aQute.bnd.gradle:4.2.0'
}
}
plugins {
// Add dependency for build script so we can access Git from our
// build script.
id 'org.ajoberstar.grgit' version '2.2.1'
id 'net.ltgt.errorprone' version '0.0.11'
}
subprojects {
def androidProject = ((project.name == 'conscrypt-android')
|| (project.name == 'conscrypt-android-platform')
|| (project.name == 'conscrypt-benchmark-android')
|| (project.name == 'conscrypt-benchmark-caliper'))
if (androidProject) {
repositories {
google()
}
} else {
apply plugin: 'java-library'
apply plugin: 'cpp'
model {
toolChains {
visualCpp(VisualCpp)
// Prefer Clang over Gcc (order here matters!)
clang(Clang)
gcc(Gcc)
}
}
}
apply plugin: "maven"
apply plugin: "signing"
apply plugin: "idea"
apply plugin: "net.ltgt.errorprone"
group = "org.conscrypt"
description = 'Conscrypt is an alternate Java Security Provider that uses BoringSSL'
version = "2.3.0-SNAPSHOT"
ext {
os = org.gradle.internal.os.OperatingSystem.current();
if (os.isLinux()) {
osName = "linux"
} else if (os.isMacOsX()) {
osName = "osx"
} else if (os.isWindows()) {
osName = "windows"
} else {
throw new GradleException("Unsupported os: " + os.name)
}
if (project.hasProperty("boringsslHome")) {
boringsslHome = project.property("boringsslHome")
} else {
boringsslHome = "$System.env.BORINGSSL_HOME"
}
boringsslIncludeDir = normalizePath("$boringsslHome/include")
boringssl32BuildDir = normalizePath("$boringsslHome/build32")
boringssl64BuildDir = normalizePath("$boringsslHome/build64")
boringsslppc64leBuildDir = normalizePath("$boringsslHome/buildppc64le")
if (project.hasProperty("jdkHome")) {
jdkHome = project.property("jdkHome")
} else {
jdkHome = "$System.env.JAVA_HOME"
}
jdkIncludeDir = normalizePath("$jdkHome/include")
// Needs to be binary compatible with androidMinSdkVersion
androidMinJavaVersion = JavaVersion.VERSION_1_7
build32Bit = file("$boringssl32BuildDir").exists()
build64Bit = file("$boringssl64BuildDir").exists()
buildppc64le = file("$boringsslppc64leBuildDir").exists()
// Ensure the environment is configured properly.
assert file("$boringsslHome").exists()
assert file("$boringsslIncludeDir").exists()
assert build32Bit || build64Bit || buildppc64le
assert file("$jdkHome").exists()
assert file("$jdkIncludeDir").exists()
// Get the commit hash for BoringSSL.
boringSslGit = org.ajoberstar.grgit.Grgit.open(dir: boringsslHome)
boringSslVersion = boringSslGit.head().id
// Allow the java executable to be specified via env/property for each architecture.
javaExecutable32 = System.getProperty('javaExecutable32', System.env.CONSCRYPT_JAVA_EXECUTABLE_32)
javaExecutable64 = System.getProperty('javaExecutable64', System.env.CONSCRYPT_JAVA_EXECUTABLE_64)
jmhVersion = '1.19'
libraries = [
android_tools: android_tools,
roboelectric: 'org.robolectric:android-all:7.1.0_r7-robolectric-0',
// Test dependencies.
bouncycastle_apis: 'org.bouncycastle:bcpkix-jdk15on:1.56',
bouncycastle_provider: 'org.bouncycastle:bcprov-jdk15on:1.56',
junit : 'junit:junit:4.12',
mockito: 'org.mockito:mockito-core:1.9.5',
truth : 'com.google.truth:truth:0.28',
// Benchmark dependencies
jmh_core: "org.openjdk.jmh:jmh-core:${jmhVersion}",
jmh_generator_annprocess: "org.openjdk.jmh:jmh-generator-annprocess:${jmhVersion}",
jmh_generator_asm: "org.openjdk.jmh:jmh-generator-asm:${jmhVersion}",
jmh_generator_bytecode: "org.openjdk.jmh:jmh-generator-bytecode:${jmhVersion}",
jmh_generator_reflection: "org.openjdk.jmh:jmh-generator-reflection:${jmhVersion}",
netty_handler: 'io.netty:netty-handler:4.1.8.Final',
netty_tcnative: 'io.netty:netty-tcnative-boringssl-static:1.1.33.Fork26',
]
signJar = { jarPath ->
if (rootProject.hasProperty('signingKeystore') && rootProject.hasProperty('signingPassword')) {
def command = 'jarsigner -keystore ' + rootProject.signingKeystore +
' -storepass ' + rootProject.signingPassword +
' ' + jarPath + ' signingcert'
def process = command.execute()
process.waitFor()
if (process.exitValue()) {
throw new GradleException('Jar signing failed for ' + jarPath + ': ' + process.text)
}
}
}
}
repositories {
mavenCentral()
mavenLocal()
jcenter()
}
signing {
required false
sign configurations.archives
}
signArchives.doFirst {
configurations.archives.allArtifacts.each {
if (it.type == 'jar' && it.classifier != 'sources' && it.classifier != 'javadoc') {
signJar(it.file.absolutePath)
}
}
}
task generateProperties(type: WriteProperties) {
ext {
parsedVersion = VersionNumber.parse(version)
}
property("org.conscrypt.version.major", parsedVersion.getMajor())
property("org.conscrypt.version.minor", parsedVersion.getMinor())
property("org.conscrypt.version.patch", parsedVersion.getMicro())
property("org.conscrypt.boringssl.version", boringSslVersion)
outputFile "build/generated/resources/org/conscrypt/conscrypt.properties"
}
if (!androidProject) {
sourceCompatibility = JavaVersion.VERSION_1_7
targetCompatibility = JavaVersion.VERSION_1_7
[compileJava, compileTestJava].each() {
it.options.compilerArgs += ["-Xlint:all", "-Xlint:-options", '-Xmaxwarns', '9999999']
it.options.encoding = "UTF-8"
if (rootProject.hasProperty('failOnWarnings') && rootProject.failOnWarnings.toBoolean()) {
it.options.compilerArgs += ["-Werror"]
}
}
compileTestJava {
// serialVersionUID is basically guaranteed to be useless in our tests
options.compilerArgs += ["-Xlint:-serial"]
}
jar.manifest {
attributes('Implementation-Title': name,
'Implementation-Version': version,
'Built-By': System.getProperty('user.name'),
'Built-JDK': System.getProperty('java.version'),
'Source-Compatibility': sourceCompatibility,
'Target-Compatibility': targetCompatibility)
}
javadoc.options {
encoding = 'UTF-8'
links 'https://docs.oracle.com/javase/8/docs/api/'
}
// Disable JavaDoc doclint on Java 8. It's annoying.
if (JavaVersion.current().isJava8Compatible()) {
allprojects {
tasks.withType(Javadoc) {
options.addStringOption('Xdoclint:none', '-quiet')
}
}
}
task javadocJar(type: Jar) {
classifier = 'javadoc'
from javadoc
}
task sourcesJar(type: Jar) {
classifier = 'sources'
from sourceSets.main.allSource
}
artifacts {
archives sourcesJar
archives javadocJar
}
uploadArchives.repositories.mavenDeployer {
beforeDeployment { MavenDeployment deployment -> signing.signPom(deployment) }
String stagingUrl
if (rootProject.hasProperty('repositoryId')) {
stagingUrl = 'https://oss.sonatype.org/service/local/staging/deployByRepositoryId/' +
rootProject.repositoryId
} else {
stagingUrl = 'https://oss.sonatype.org/service/local/staging/deploy/maven2/'
}
def configureAuth = {
if (rootProject.hasProperty('ossrhUsername') && rootProject.hasProperty('ossrhPassword')) {
authentication(userName: rootProject.ossrhUsername, password: rootProject.ossrhPassword)
}
}
repository(url: stagingUrl, configureAuth)
snapshotRepository(url: 'https://oss.sonatype.org/content/repositories/snapshots/', configureAuth)
}
[
install.repositories.mavenInstaller,
uploadArchives.repositories.mavenDeployer,
]*.pom*.whenConfigured { pom ->
pom.project {
name "$project.group:$project.name"
description project.description
url 'https://conscrypt.org/'
scm {
connection 'scm:git:https://github.com/google/conscrypt.git'
developerConnection 'scm:git:[email protected]:google/conscrypt.git'
url 'https://github.com/google/conscrypt'
}
licenses {
license {
name 'Apache 2'
url 'https://www.apache.org/licenses/LICENSE-2.0'
}
}
developers {
developer {
id "conscrypt"
name "Conscrypt Contributors"
email "[email protected]"
url "https://conscrypt.org/"
organization = "Google, Inc."
organizationUrl "https://www.google.com"
}
}
}
}
// At a test failure, log the stack trace to the console so that we don't
// have to open the HTML in a browser.
test {
testLogging {
exceptionFormat = 'full'
showExceptions true
showCauses true
showStackTraces true
showStandardStreams = true
}
// Enable logging for all conscrypt classes while running tests.
systemProperty 'java.util.logging.config.file', "${rootDir}/test_logging.properties"
maxHeapSize = '1500m'
// Override the default executable if manually specified
if (build64Bit && javaExecutable64 != null) {
executable javaExecutable64
} else if (build32Bit && javaExecutable32 != null) {
executable javaExecutable32
}
}
}
}
static String normalizePath(path) {
new File(path.toString()).absolutePath
}