Colin Cross | 3e3e72d | 2017-06-22 17:20:19 -0700 | [diff] [blame] | 1 | // Copyright 2017 Google Inc. All rights reserved. |
| 2 | // |
| 3 | // Licensed under the Apache License, Version 2.0 (the "License"); |
| 4 | // you may not use this file except in compliance with the License. |
| 5 | // You may obtain a copy of the License at |
| 6 | // |
| 7 | // http://www.apache.org/licenses/LICENSE-2.0 |
| 8 | // |
| 9 | // Unless required by applicable law or agreed to in writing, software |
| 10 | // distributed under the License is distributed on an "AS IS" BASIS, |
| 11 | // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. |
| 12 | // See the License for the specific language governing permissions and |
| 13 | // limitations under the License. |
| 14 | |
| 15 | package config |
| 16 | |
Colin Cross | 6416271 | 2017-08-08 13:17:59 -0700 | [diff] [blame] | 17 | import ( |
Colin Cross | 3bc7ffa | 2017-11-22 16:19:37 -0800 | [diff] [blame] | 18 | "path/filepath" |
| 19 | "runtime" |
Colin Cross | 6416271 | 2017-08-08 13:17:59 -0700 | [diff] [blame] | 20 | "strings" |
| 21 | |
| 22 | _ "github.com/google/blueprint/bootstrap" |
| 23 | |
| 24 | "android/soong/android" |
Ramy Medhat | 1dcc27e | 2020-04-21 21:36:23 -0400 | [diff] [blame] | 25 | "android/soong/remoteexec" |
Colin Cross | 6416271 | 2017-08-08 13:17:59 -0700 | [diff] [blame] | 26 | ) |
Colin Cross | 3e3e72d | 2017-06-22 17:20:19 -0700 | [diff] [blame] | 27 | |
| 28 | var ( |
Colin Cross | 6416271 | 2017-08-08 13:17:59 -0700 | [diff] [blame] | 29 | pctx = android.NewPackageContext("android/soong/java/config") |
| 30 | |
Pete Gillin | 0638dfc | 2020-07-01 10:48:14 +0100 | [diff] [blame^] | 31 | LegacyCorePlatformBootclasspathLibraries = []string{"legacy.core.platform.api.stubs", "core-lambda-stubs"} |
| 32 | LegacyCorePlatformSystemModules = "legacy-core-platform-api-stubs-system-modules" |
| 33 | FrameworkLibraries = []string{"ext", "framework"} |
| 34 | DefaultLambdaStubsLibrary = "core-lambda-stubs" |
| 35 | SdkLambdaStubsPath = "prebuilts/sdk/tools/core-lambda-stubs.jar" |
Colin Cross | cb93359 | 2017-11-22 13:49:43 -0800 | [diff] [blame] | 36 | |
| 37 | DefaultJacocoExcludeFilter = []string{"org.junit.*", "org.jacoco.*", "org.mockito.*"} |
| 38 | |
| 39 | InstrumentFrameworkModules = []string{ |
| 40 | "framework", |
| 41 | "telephony-common", |
| 42 | "services", |
| 43 | "android.car", |
| 44 | "android.car7", |
Adam Vartanian | fa62cfc | 2019-03-08 14:46:36 +0000 | [diff] [blame] | 45 | "conscrypt", |
Victor Chang | 07b5b4c | 2019-08-06 16:57:40 +0100 | [diff] [blame] | 46 | "core-icu4j", |
Pete Gillin | 7868a09 | 2017-12-19 15:01:39 +0000 | [diff] [blame] | 47 | "core-oj", |
Pete Gillin | 5d13354 | 2018-02-13 15:23:14 +0000 | [diff] [blame] | 48 | "core-libart", |
Anton Hansson | 91133e6 | 2020-01-17 09:55:03 +0000 | [diff] [blame] | 49 | // TODO: Could this be all updatable bootclasspath jars? |
Insun Kang | 2343386 | 2019-01-24 20:46:28 +0900 | [diff] [blame] | 50 | "updatable-media", |
Anton Hansson | 91133e6 | 2020-01-17 09:55:03 +0000 | [diff] [blame] | 51 | "framework-sdkextensions", |
evitayan | 2e56067 | 2020-02-24 15:02:02 -0800 | [diff] [blame] | 52 | "android.net.ipsec.ike", |
Colin Cross | cb93359 | 2017-11-22 13:49:43 -0800 | [diff] [blame] | 53 | } |
Colin Cross | 3e3e72d | 2017-06-22 17:20:19 -0700 | [diff] [blame] | 54 | ) |
| 55 | |
Colin Cross | 33961b5 | 2019-07-11 11:01:22 -0700 | [diff] [blame] | 56 | const ( |
| 57 | JavaVmFlags = `-XX:OnError="cat hs_err_pid%p.log" -XX:CICompilerCount=6 -XX:+UseDynamicNumberOfGCThreads` |
| 58 | JavacVmFlags = `-J-XX:OnError="cat hs_err_pid%p.log" -J-XX:CICompilerCount=6 -J-XX:+UseDynamicNumberOfGCThreads` |
| 59 | ) |
| 60 | |
Colin Cross | 6416271 | 2017-08-08 13:17:59 -0700 | [diff] [blame] | 61 | func init() { |
| 62 | pctx.Import("github.com/google/blueprint/bootstrap") |
| 63 | |
Colin Cross | fee57cb | 2017-09-05 13:16:45 -0700 | [diff] [blame] | 64 | pctx.StaticVariable("JavacHeapSize", "2048M") |
| 65 | pctx.StaticVariable("JavacHeapFlags", "-J-Xmx${JavacHeapSize}") |
Sasha Smundak | ee5c603 | 2019-07-09 11:26:20 -0700 | [diff] [blame] | 66 | pctx.StaticVariable("DexFlags", "-JXX:OnError='cat hs_err_pid%p.log' -JXX:CICompilerCount=6 -JXX:+UseDynamicNumberOfGCThreads") |
Colin Cross | 3203dde | 2017-08-28 17:23:21 -0700 | [diff] [blame] | 67 | |
Colin Cross | 6416271 | 2017-08-08 13:17:59 -0700 | [diff] [blame] | 68 | pctx.StaticVariable("CommonJdkFlags", strings.Join([]string{ |
Colin Cross | 6416271 | 2017-08-08 13:17:59 -0700 | [diff] [blame] | 69 | `-Xmaxerrs 9999999`, |
| 70 | `-encoding UTF-8`, |
| 71 | `-sourcepath ""`, |
| 72 | `-g`, |
Colin Cross | 945c000 | 2017-09-19 10:52:23 -0700 | [diff] [blame] | 73 | // Turbine leaves out bridges which can cause javac to unnecessarily insert them into |
| 74 | // subclasses (b/65645120). Setting this flag causes our custom javac to assume that |
| 75 | // the missing bridges will exist at runtime and not recreate them in subclasses. |
| 76 | // If a different javac is used the flag will be ignored and extra bridges will be inserted. |
| 77 | // The flag is implemented by https://android-review.googlesource.com/c/486427 |
| 78 | `-XDskipDuplicateBridges=true`, |
Colin Cross | 6416271 | 2017-08-08 13:17:59 -0700 | [diff] [blame] | 79 | |
Colin Cross | 1369cdb | 2017-09-29 17:58:17 -0700 | [diff] [blame] | 80 | // b/65004097: prevent using java.lang.invoke.StringConcatFactory when using -target 1.9 |
| 81 | `-XDstringConcat=inline`, |
| 82 | }, " ")) |
Colin Cross | 33961b5 | 2019-07-11 11:01:22 -0700 | [diff] [blame] | 83 | |
| 84 | pctx.StaticVariable("JavaVmFlags", JavaVmFlags) |
| 85 | pctx.StaticVariable("JavacVmFlags", JavacVmFlags) |
Colin Cross | 6416271 | 2017-08-08 13:17:59 -0700 | [diff] [blame] | 86 | |
| 87 | pctx.VariableConfigMethod("hostPrebuiltTag", android.Config.PrebuiltOS) |
| 88 | |
Dan Willemsen | 54daaf0 | 2018-03-12 13:24:09 -0700 | [diff] [blame] | 89 | pctx.VariableFunc("JavaHome", func(ctx android.PackageVarContext) string { |
Dan Willemsen | d9e8f0a | 2017-10-30 13:42:06 -0700 | [diff] [blame] | 90 | // This is set up and guaranteed by soong_ui |
Dan Willemsen | 54daaf0 | 2018-03-12 13:24:09 -0700 | [diff] [blame] | 91 | return ctx.Config().Getenv("ANDROID_JAVA_HOME") |
Colin Cross | e2ad230 | 2017-10-05 16:48:56 -0700 | [diff] [blame] | 92 | }) |
Pete Gillin | 1f52e93 | 2019-10-09 17:10:08 +0100 | [diff] [blame] | 93 | pctx.VariableFunc("JlinkVersion", func(ctx android.PackageVarContext) string { |
Pete Gillin | a2affbb | 2019-11-07 18:55:53 +0000 | [diff] [blame] | 94 | if override := ctx.Config().Getenv("OVERRIDE_JLINK_VERSION_NUMBER"); override != "" { |
| 95 | return override |
| 96 | } |
Pete Gillin | a7a3d64 | 2019-11-07 18:58:42 +0000 | [diff] [blame] | 97 | return "11" |
Pete Gillin | 1f52e93 | 2019-10-09 17:10:08 +0100 | [diff] [blame] | 98 | }) |
Colin Cross | e2ad230 | 2017-10-05 16:48:56 -0700 | [diff] [blame] | 99 | |
Colin Cross | 6416271 | 2017-08-08 13:17:59 -0700 | [diff] [blame] | 100 | pctx.SourcePathVariable("JavaToolchain", "${JavaHome}/bin") |
| 101 | pctx.SourcePathVariableWithEnvOverride("JavacCmd", |
| 102 | "${JavaToolchain}/javac", "ALTERNATE_JAVAC") |
| 103 | pctx.SourcePathVariable("JavaCmd", "${JavaToolchain}/java") |
| 104 | pctx.SourcePathVariable("JarCmd", "${JavaToolchain}/jar") |
| 105 | pctx.SourcePathVariable("JavadocCmd", "${JavaToolchain}/javadoc") |
Tobias Thierer | 77d0b41 | 2017-08-31 16:08:39 +0100 | [diff] [blame] | 106 | pctx.SourcePathVariable("JlinkCmd", "${JavaToolchain}/jlink") |
| 107 | pctx.SourcePathVariable("JmodCmd", "${JavaToolchain}/jmod") |
Colin Cross | 1369cdb | 2017-09-29 17:58:17 -0700 | [diff] [blame] | 108 | pctx.SourcePathVariable("JrtFsJar", "${JavaHome}/lib/jrt-fs.jar") |
Sasha Smundak | 2a4549e | 2018-11-05 16:49:08 -0800 | [diff] [blame] | 109 | pctx.SourcePathVariable("JavaKytheExtractorJar", "prebuilts/build-tools/common/framework/javac_extractor.jar") |
Nan Zhang | ed19fc3 | 2017-10-19 13:06:22 -0700 | [diff] [blame] | 110 | pctx.SourcePathVariable("Ziptime", "prebuilts/build-tools/${hostPrebuiltTag}/bin/ziptime") |
Colin Cross | 6416271 | 2017-08-08 13:17:59 -0700 | [diff] [blame] | 111 | |
Przemyslaw Szczepaniak | 4b5fe9d | 2018-02-13 14:32:54 +0000 | [diff] [blame] | 112 | pctx.SourcePathVariable("GenKotlinBuildFileCmd", "build/soong/scripts/gen-kotlin-build-file.sh") |
| 113 | |
Colin Cross | b852a58 | 2017-08-10 17:58:12 -0700 | [diff] [blame] | 114 | pctx.SourcePathVariable("JarArgsCmd", "build/soong/scripts/jar-args.sh") |
Vladimir Marko | 0975ee0 | 2019-04-02 10:29:55 +0100 | [diff] [blame] | 115 | pctx.SourcePathVariable("PackageCheckCmd", "build/soong/scripts/package-check.sh") |
Colin Cross | 66f7882 | 2018-05-02 12:58:28 -0700 | [diff] [blame] | 116 | pctx.HostBinToolVariable("ExtractJarPackagesCmd", "extract_jar_packages") |
Colin Cross | a482065 | 2017-10-17 13:56:52 -0700 | [diff] [blame] | 117 | pctx.HostBinToolVariable("SoongZipCmd", "soong_zip") |
| 118 | pctx.HostBinToolVariable("MergeZipsCmd", "merge_zips") |
Colin Cross | cb93359 | 2017-11-22 13:49:43 -0800 | [diff] [blame] | 119 | pctx.HostBinToolVariable("Zip2ZipCmd", "zip2zip") |
Colin Cross | 436b765 | 2018-03-15 16:24:10 -0700 | [diff] [blame] | 120 | pctx.HostBinToolVariable("ZipSyncCmd", "zipsync") |
Nan Zhang | 61819ce | 2018-05-04 18:49:16 -0700 | [diff] [blame] | 121 | pctx.HostBinToolVariable("ApiCheckCmd", "apicheck") |
Colin Cross | f0056cb | 2017-12-22 15:56:08 -0800 | [diff] [blame] | 122 | pctx.HostBinToolVariable("D8Cmd", "d8") |
Colin Cross | 66dbc0b | 2017-12-28 12:23:20 -0800 | [diff] [blame] | 123 | pctx.HostBinToolVariable("R8Cmd", "r8-compat-proguard") |
Colin Cross | f24a22a | 2019-01-31 14:12:44 -0800 | [diff] [blame] | 124 | pctx.HostBinToolVariable("HiddenAPICmd", "hiddenapi") |
Sasha Smundak | a7856c0 | 2020-04-23 09:49:59 -0700 | [diff] [blame] | 125 | pctx.HostBinToolVariable("ExtractApksCmd", "extract_apks") |
Dan Willemsen | 54daaf0 | 2018-03-12 13:24:09 -0700 | [diff] [blame] | 126 | pctx.VariableFunc("TurbineJar", func(ctx android.PackageVarContext) string { |
Nan Zhang | 9a36418 | 2017-10-25 11:11:37 -0700 | [diff] [blame] | 127 | turbine := "turbine.jar" |
Dan Willemsen | 54daaf0 | 2018-03-12 13:24:09 -0700 | [diff] [blame] | 128 | if ctx.Config().UnbundledBuild() { |
| 129 | return "prebuilts/build-tools/common/framework/" + turbine |
Nan Zhang | 9a36418 | 2017-10-25 11:11:37 -0700 | [diff] [blame] | 130 | } else { |
Martin Stjernholm | 7260d06 | 2019-12-09 21:47:14 +0000 | [diff] [blame] | 131 | return ctx.Config().HostJavaToolPath(ctx, turbine).String() |
Nan Zhang | 9a36418 | 2017-10-25 11:11:37 -0700 | [diff] [blame] | 132 | } |
| 133 | }) |
Alan Leung | 1d476fc | 2017-10-17 18:50:50 -0700 | [diff] [blame] | 134 | |
Colin Cross | 6416271 | 2017-08-08 13:17:59 -0700 | [diff] [blame] | 135 | pctx.HostJavaToolVariable("JarjarCmd", "jarjar.jar") |
Nan Zhang | 581fd21 | 2018-01-10 16:06:12 -0800 | [diff] [blame] | 136 | pctx.HostJavaToolVariable("JsilverJar", "jsilver.jar") |
| 137 | pctx.HostJavaToolVariable("DoclavaJar", "doclava.jar") |
Nan Zhang | 79614d1 | 2018-04-19 18:03:39 -0700 | [diff] [blame] | 138 | pctx.HostJavaToolVariable("MetalavaJar", "metalava.jar") |
Nan Zhang | 86d2d55 | 2018-08-09 15:33:27 -0700 | [diff] [blame] | 139 | pctx.HostJavaToolVariable("DokkaJar", "dokka.jar") |
Nan Zhang | 4c819fb | 2018-08-27 18:31:46 -0700 | [diff] [blame] | 140 | pctx.HostJavaToolVariable("JetifierJar", "jetifier.jar") |
Ramy Medhat | 1dcc27e | 2020-04-21 21:36:23 -0400 | [diff] [blame] | 141 | pctx.HostJavaToolVariable("R8Jar", "r8-compat-proguard.jar") |
| 142 | pctx.HostJavaToolVariable("D8Jar", "d8.jar") |
Colin Cross | 6416271 | 2017-08-08 13:17:59 -0700 | [diff] [blame] | 143 | |
Colin Cross | a482065 | 2017-10-17 13:56:52 -0700 | [diff] [blame] | 144 | pctx.HostBinToolVariable("SoongJavacWrapper", "soong_javac_wrapper") |
Colin Cross | 43f08db | 2018-11-12 10:13:39 -0800 | [diff] [blame] | 145 | pctx.HostBinToolVariable("DexpreoptGen", "dexpreopt_gen") |
Colin Cross | a482065 | 2017-10-17 13:56:52 -0700 | [diff] [blame] | 146 | |
Ramy Medhat | 1dcc27e | 2020-04-21 21:36:23 -0400 | [diff] [blame] | 147 | pctx.VariableFunc("REJavaPool", remoteexec.EnvOverrideFunc("RBE_JAVA_POOL", "java16")) |
| 148 | pctx.VariableFunc("REJavacExecStrategy", remoteexec.EnvOverrideFunc("RBE_JAVAC_EXEC_STRATEGY", remoteexec.LocalExecStrategy)) |
| 149 | pctx.VariableFunc("RED8ExecStrategy", remoteexec.EnvOverrideFunc("RBE_D8_EXEC_STRATEGY", remoteexec.LocalExecStrategy)) |
| 150 | pctx.VariableFunc("RER8ExecStrategy", remoteexec.EnvOverrideFunc("RBE_R8_EXEC_STRATEGY", remoteexec.LocalExecStrategy)) |
Kousik Kumar | 1372c1b | 2020-05-20 07:55:56 -0700 | [diff] [blame] | 151 | pctx.VariableFunc("RETurbineExecStrategy", remoteexec.EnvOverrideFunc("RBE_TURBINE_EXEC_STRATEGY", remoteexec.LocalExecStrategy)) |
Kousik Kumar | 309b1c0 | 2020-05-28 06:13:33 -0700 | [diff] [blame] | 152 | pctx.VariableFunc("RESignApkExecStrategy", remoteexec.EnvOverrideFunc("RBE_SIGNAPK_EXEC_STRATEGY", remoteexec.LocalExecStrategy)) |
Kousik Kumar | 366afc5 | 2020-05-20 11:27:16 -0700 | [diff] [blame] | 153 | pctx.VariableFunc("REJarExecStrategy", remoteexec.EnvOverrideFunc("RBE_JAR_EXEC_STRATEGY", remoteexec.LocalExecStrategy)) |
| 154 | pctx.VariableFunc("REZipExecStrategy", remoteexec.EnvOverrideFunc("RBE_ZIP_EXEC_STRATEGY", remoteexec.LocalExecStrategy)) |
Ramy Medhat | 8ea054a | 2020-01-27 14:19:44 -0500 | [diff] [blame] | 155 | |
Colin Cross | cb93359 | 2017-11-22 13:49:43 -0800 | [diff] [blame] | 156 | pctx.HostJavaToolVariable("JacocoCLIJar", "jacoco-cli.jar") |
Colin Cross | 3bc7ffa | 2017-11-22 16:19:37 -0800 | [diff] [blame] | 157 | |
Colin Cross | 7211910 | 2019-05-20 13:14:18 -0700 | [diff] [blame] | 158 | pctx.HostBinToolVariable("ManifestCheckCmd", "manifest_check") |
Colin Cross | 4af387c | 2019-05-16 13:16:29 -0700 | [diff] [blame] | 159 | pctx.HostBinToolVariable("ManifestFixerCmd", "manifest_fixer") |
Colin Cross | cfae5a6 | 2018-05-24 16:11:20 -0700 | [diff] [blame] | 160 | |
Colin Cross | 87ecbfe | 2019-02-26 22:14:04 -0800 | [diff] [blame] | 161 | pctx.HostBinToolVariable("ManifestMergerCmd", "manifest-merger") |
Colin Cross | 43f08db | 2018-11-12 10:13:39 -0800 | [diff] [blame] | 162 | |
Colin Cross | 8faf8fc | 2019-01-16 15:15:52 -0800 | [diff] [blame] | 163 | pctx.HostBinToolVariable("Class2Greylist", "class2greylist") |
| 164 | pctx.HostBinToolVariable("HiddenAPI", "hiddenapi") |
Colin Cross | bdf9514 | 2019-08-08 12:56:34 -0700 | [diff] [blame] | 165 | |
| 166 | hostBinToolVariableWithSdkToolsPrebuilt("Aapt2Cmd", "aapt2") |
| 167 | hostBinToolVariableWithBuildToolsPrebuilt("AidlCmd", "aidl") |
| 168 | hostBinToolVariableWithBuildToolsPrebuilt("ZipAlign", "zipalign") |
| 169 | |
| 170 | hostJavaToolVariableWithSdkToolsPrebuilt("SignapkCmd", "signapk") |
| 171 | // TODO(ccross): this should come from the signapk dependencies, but we don't have any way |
| 172 | // to express host JNI dependencies yet. |
| 173 | hostJNIToolVariableWithSdkToolsPrebuilt("SignapkJniLibrary", "libconscrypt_openjdk_jni") |
| 174 | } |
| 175 | |
| 176 | func hostBinToolVariableWithSdkToolsPrebuilt(name, tool string) { |
| 177 | pctx.VariableFunc(name, func(ctx android.PackageVarContext) string { |
| 178 | if ctx.Config().UnbundledBuild() || ctx.Config().IsPdkBuild() { |
| 179 | return filepath.Join("prebuilts/sdk/tools", runtime.GOOS, "bin", tool) |
| 180 | } else { |
Martin Stjernholm | 7260d06 | 2019-12-09 21:47:14 +0000 | [diff] [blame] | 181 | return ctx.Config().HostToolPath(ctx, tool).String() |
Colin Cross | bdf9514 | 2019-08-08 12:56:34 -0700 | [diff] [blame] | 182 | } |
| 183 | }) |
| 184 | } |
| 185 | |
| 186 | func hostJavaToolVariableWithSdkToolsPrebuilt(name, tool string) { |
| 187 | pctx.VariableFunc(name, func(ctx android.PackageVarContext) string { |
| 188 | if ctx.Config().UnbundledBuild() || ctx.Config().IsPdkBuild() { |
| 189 | return filepath.Join("prebuilts/sdk/tools/lib", tool+".jar") |
| 190 | } else { |
Martin Stjernholm | 7260d06 | 2019-12-09 21:47:14 +0000 | [diff] [blame] | 191 | return ctx.Config().HostJavaToolPath(ctx, tool+".jar").String() |
Colin Cross | bdf9514 | 2019-08-08 12:56:34 -0700 | [diff] [blame] | 192 | } |
| 193 | }) |
| 194 | } |
| 195 | |
| 196 | func hostJNIToolVariableWithSdkToolsPrebuilt(name, tool string) { |
| 197 | pctx.VariableFunc(name, func(ctx android.PackageVarContext) string { |
| 198 | if ctx.Config().UnbundledBuild() || ctx.Config().IsPdkBuild() { |
| 199 | ext := ".so" |
| 200 | if runtime.GOOS == "darwin" { |
| 201 | ext = ".dylib" |
| 202 | } |
| 203 | return filepath.Join("prebuilts/sdk/tools", runtime.GOOS, "lib64", tool+ext) |
| 204 | } else { |
Martin Stjernholm | 7260d06 | 2019-12-09 21:47:14 +0000 | [diff] [blame] | 205 | return ctx.Config().HostJNIToolPath(ctx, tool).String() |
Colin Cross | bdf9514 | 2019-08-08 12:56:34 -0700 | [diff] [blame] | 206 | } |
| 207 | }) |
| 208 | } |
| 209 | |
| 210 | func hostBinToolVariableWithBuildToolsPrebuilt(name, tool string) { |
| 211 | pctx.VariableFunc(name, func(ctx android.PackageVarContext) string { |
| 212 | if ctx.Config().UnbundledBuild() || ctx.Config().IsPdkBuild() { |
| 213 | return filepath.Join("prebuilts/build-tools", ctx.Config().PrebuiltOS(), "bin", tool) |
| 214 | } else { |
Martin Stjernholm | 7260d06 | 2019-12-09 21:47:14 +0000 | [diff] [blame] | 215 | return ctx.Config().HostToolPath(ctx, tool).String() |
Colin Cross | bdf9514 | 2019-08-08 12:56:34 -0700 | [diff] [blame] | 216 | } |
| 217 | }) |
Colin Cross | 6416271 | 2017-08-08 13:17:59 -0700 | [diff] [blame] | 218 | } |
Colin Cross | 33961b5 | 2019-07-11 11:01:22 -0700 | [diff] [blame] | 219 | |
| 220 | // JavaCmd returns a SourcePath object with the path to the java command. |
| 221 | func JavaCmd(ctx android.PathContext) android.SourcePath { |
| 222 | return javaTool(ctx, "java") |
| 223 | } |
| 224 | |
| 225 | // JavadocCmd returns a SourcePath object with the path to the java command. |
| 226 | func JavadocCmd(ctx android.PathContext) android.SourcePath { |
| 227 | return javaTool(ctx, "javadoc") |
| 228 | } |
| 229 | |
| 230 | func javaTool(ctx android.PathContext, tool string) android.SourcePath { |
| 231 | type javaToolKey string |
| 232 | |
| 233 | key := android.NewCustomOnceKey(javaToolKey(tool)) |
| 234 | |
| 235 | return ctx.Config().OnceSourcePath(key, func() android.SourcePath { |
| 236 | return javaToolchain(ctx).Join(ctx, tool) |
| 237 | }) |
| 238 | |
| 239 | } |
| 240 | |
| 241 | var javaToolchainKey = android.NewOnceKey("javaToolchain") |
| 242 | |
| 243 | func javaToolchain(ctx android.PathContext) android.SourcePath { |
| 244 | return ctx.Config().OnceSourcePath(javaToolchainKey, func() android.SourcePath { |
| 245 | return javaHome(ctx).Join(ctx, "bin") |
| 246 | }) |
| 247 | } |
| 248 | |
| 249 | var javaHomeKey = android.NewOnceKey("javaHome") |
| 250 | |
| 251 | func javaHome(ctx android.PathContext) android.SourcePath { |
| 252 | return ctx.Config().OnceSourcePath(javaHomeKey, func() android.SourcePath { |
| 253 | // This is set up and guaranteed by soong_ui |
| 254 | return android.PathForSource(ctx, ctx.Config().Getenv("ANDROID_JAVA_HOME")) |
| 255 | }) |
| 256 | } |