2015-07-09 03:13:11 +02:00
|
|
|
// Copyright 2015 Google Inc. All rights reserved.
|
|
|
|
//
|
|
|
|
// 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 java
|
|
|
|
|
|
|
|
import (
|
2017-08-02 20:05:49 +02:00
|
|
|
"fmt"
|
|
|
|
"io"
|
2017-08-11 02:09:43 +02:00
|
|
|
"strings"
|
2017-08-02 20:05:49 +02:00
|
|
|
|
2016-05-19 00:37:25 +02:00
|
|
|
"android/soong/android"
|
2015-07-09 03:13:11 +02:00
|
|
|
)
|
|
|
|
|
2017-08-11 02:00:19 +02:00
|
|
|
func (library *Library) AndroidMk() android.AndroidMkData {
|
|
|
|
return android.AndroidMkData{
|
|
|
|
Class: "JAVA_LIBRARIES",
|
2017-10-19 22:06:22 +02:00
|
|
|
OutputFile: android.OptionalPathForPath(library.implementationJarFile),
|
2017-09-07 22:20:25 +02:00
|
|
|
Include: "$(BUILD_SYSTEM)/soong_java_prebuilt.mk",
|
2017-08-11 02:00:19 +02:00
|
|
|
Extra: []android.AndroidMkExtraFunc{
|
|
|
|
func(w io.Writer, outputFile android.Path) {
|
2017-12-08 00:28:59 +01:00
|
|
|
if len(library.logtagsSrcs) > 0 {
|
|
|
|
var logtags []string
|
|
|
|
for _, l := range library.logtagsSrcs {
|
|
|
|
logtags = append(logtags, l.Rel())
|
|
|
|
}
|
|
|
|
fmt.Fprintln(w, "LOCAL_LOGTAGS_FILES :=", strings.Join(logtags, " "))
|
|
|
|
}
|
|
|
|
|
2018-06-27 02:59:05 +02:00
|
|
|
if library.installFile == nil {
|
2017-09-01 01:45:16 +02:00
|
|
|
fmt.Fprintln(w, "LOCAL_UNINSTALLABLE_MODULE := true")
|
|
|
|
}
|
2017-09-15 22:00:47 +02:00
|
|
|
if library.dexJarFile != nil {
|
|
|
|
fmt.Fprintln(w, "LOCAL_SOONG_DEX_JAR :=", library.dexJarFile.String())
|
2017-12-06 00:31:19 +01:00
|
|
|
if library.deviceProperties.Dex_preopt.Enabled != nil {
|
|
|
|
fmt.Fprintln(w, "LOCAL_DEX_PREOPT :=", *library.deviceProperties.Dex_preopt.Enabled)
|
|
|
|
}
|
|
|
|
if library.deviceProperties.Dex_preopt.App_image != nil {
|
|
|
|
fmt.Fprintln(w, "LOCAL_DEX_PREOPT_APP_IMAGE :=", *library.deviceProperties.Dex_preopt.App_image)
|
|
|
|
}
|
|
|
|
if library.deviceProperties.Dex_preopt.Profile_guided != nil {
|
|
|
|
fmt.Fprintln(w, "LOCAL_DEX_PREOPT_GENERATE_PROFILE :=", *library.deviceProperties.Dex_preopt.Profile_guided)
|
|
|
|
}
|
|
|
|
if library.deviceProperties.Dex_preopt.Profile != nil {
|
|
|
|
fmt.Fprintln(w, "LOCAL_DEX_PREOPT_GENERATE_PROFILE := true")
|
|
|
|
fmt.Fprintln(w, "LOCAL_DEX_PREOPT_PROFILE_CLASS_LISTING := $(LOCAL_PATH)/"+*library.deviceProperties.Dex_preopt.Profile)
|
2017-10-19 23:18:58 +02:00
|
|
|
}
|
2017-09-15 22:00:47 +02:00
|
|
|
}
|
2018-06-26 00:48:06 +02:00
|
|
|
fmt.Fprintln(w, "LOCAL_SDK_VERSION :=", library.sdkVersion())
|
2017-10-19 22:06:22 +02:00
|
|
|
fmt.Fprintln(w, "LOCAL_SOONG_HEADER_JAR :=", library.headerJarFile.String())
|
2017-11-22 22:49:43 +01:00
|
|
|
|
|
|
|
if library.jacocoReportClassesFile != nil {
|
|
|
|
fmt.Fprintln(w, "LOCAL_SOONG_JACOCO_REPORT_CLASSES_JAR :=", library.jacocoReportClassesFile.String())
|
|
|
|
}
|
2017-11-23 01:20:45 +01:00
|
|
|
|
2018-05-28 11:02:19 +02:00
|
|
|
if len(library.exportedSdkLibs) != 0 {
|
|
|
|
fmt.Fprintln(w, "LOCAL_EXPORT_SDK_LIBRARIES :=", strings.Join(library.exportedSdkLibs, " "))
|
|
|
|
}
|
|
|
|
|
2017-11-23 01:20:45 +01:00
|
|
|
// Temporary hack: export sources used to compile framework.jar to Make
|
|
|
|
// to be used for droiddoc
|
|
|
|
// TODO(ccross): remove this once droiddoc is in soong
|
|
|
|
if library.Name() == "framework" {
|
|
|
|
fmt.Fprintln(w, "SOONG_FRAMEWORK_SRCS :=", strings.Join(library.compiledJavaSrcs.Strings(), " "))
|
|
|
|
fmt.Fprintln(w, "SOONG_FRAMEWORK_SRCJARS :=", strings.Join(library.compiledSrcJars.Strings(), " "))
|
|
|
|
}
|
2017-08-11 02:00:19 +02:00
|
|
|
},
|
|
|
|
},
|
2017-10-09 23:59:32 +02:00
|
|
|
Custom: func(w io.Writer, name, prefix, moduleDir string, data android.AndroidMkData) {
|
|
|
|
android.WriteAndroidMkData(w, data)
|
|
|
|
|
2018-04-11 01:15:18 +02:00
|
|
|
if Bool(library.deviceProperties.Hostdex) && !library.Host() {
|
2017-10-09 23:59:32 +02:00
|
|
|
fmt.Fprintln(w, "include $(CLEAR_VARS)")
|
|
|
|
fmt.Fprintln(w, "LOCAL_MODULE := "+name+"-hostdex")
|
|
|
|
fmt.Fprintln(w, "LOCAL_IS_HOST_MODULE := true")
|
|
|
|
fmt.Fprintln(w, "LOCAL_MODULE_CLASS := JAVA_LIBRARIES")
|
2017-10-19 22:06:22 +02:00
|
|
|
fmt.Fprintln(w, "LOCAL_PREBUILT_MODULE_FILE :=", library.implementationJarFile.String())
|
2018-06-27 02:59:05 +02:00
|
|
|
if library.installFile == nil {
|
2017-10-09 23:59:32 +02:00
|
|
|
fmt.Fprintln(w, "LOCAL_UNINSTALLABLE_MODULE := true")
|
|
|
|
}
|
|
|
|
if library.dexJarFile != nil {
|
|
|
|
fmt.Fprintln(w, "LOCAL_SOONG_DEX_JAR :=", library.dexJarFile.String())
|
|
|
|
}
|
2017-10-19 22:06:22 +02:00
|
|
|
fmt.Fprintln(w, "LOCAL_SOONG_HEADER_JAR :=", library.implementationJarFile.String())
|
2017-10-09 23:59:32 +02:00
|
|
|
fmt.Fprintln(w, "LOCAL_REQUIRED_MODULES := "+strings.Join(data.Required, " "))
|
|
|
|
fmt.Fprintln(w, "include $(BUILD_SYSTEM)/soong_java_prebuilt.mk")
|
|
|
|
}
|
|
|
|
},
|
2017-08-11 02:00:19 +02:00
|
|
|
}
|
2015-07-09 03:13:11 +02:00
|
|
|
}
|
|
|
|
|
2018-04-10 03:40:24 +02:00
|
|
|
func (j *Test) AndroidMk() android.AndroidMkData {
|
|
|
|
data := j.Library.AndroidMk()
|
|
|
|
data.Extra = append(data.Extra, func(w io.Writer, outputFile android.Path) {
|
|
|
|
fmt.Fprintln(w, "LOCAL_MODULE_TAGS := tests")
|
|
|
|
if len(j.testProperties.Test_suites) > 0 {
|
|
|
|
fmt.Fprintln(w, "LOCAL_COMPATIBILITY_SUITE :=",
|
|
|
|
strings.Join(j.testProperties.Test_suites, " "))
|
|
|
|
}
|
2018-08-03 00:00:46 +02:00
|
|
|
if j.testProperties.Test_config != nil {
|
|
|
|
fmt.Fprintln(w, "LOCAL_TEST_CONFIG :=",
|
|
|
|
*j.testProperties.Test_config)
|
|
|
|
}
|
2018-04-10 03:40:24 +02:00
|
|
|
})
|
|
|
|
|
|
|
|
return data
|
|
|
|
}
|
|
|
|
|
2017-08-11 02:00:19 +02:00
|
|
|
func (prebuilt *Import) AndroidMk() android.AndroidMkData {
|
|
|
|
return android.AndroidMkData{
|
|
|
|
Class: "JAVA_LIBRARIES",
|
|
|
|
OutputFile: android.OptionalPathForPath(prebuilt.combinedClasspathFile),
|
2017-09-07 22:20:25 +02:00
|
|
|
Include: "$(BUILD_SYSTEM)/soong_java_prebuilt.mk",
|
2017-08-11 02:00:19 +02:00
|
|
|
Extra: []android.AndroidMkExtraFunc{
|
|
|
|
func(w io.Writer, outputFile android.Path) {
|
2018-04-11 01:15:18 +02:00
|
|
|
fmt.Fprintln(w, "LOCAL_UNINSTALLABLE_MODULE := ", !Bool(prebuilt.properties.Installable))
|
2017-10-19 22:06:22 +02:00
|
|
|
fmt.Fprintln(w, "LOCAL_SOONG_HEADER_JAR :=", prebuilt.combinedClasspathFile.String())
|
2018-06-26 00:48:06 +02:00
|
|
|
fmt.Fprintln(w, "LOCAL_SDK_VERSION :=", prebuilt.sdkVersion())
|
2017-08-11 02:00:19 +02:00
|
|
|
},
|
|
|
|
},
|
|
|
|
}
|
2015-07-09 03:13:11 +02:00
|
|
|
}
|
2017-08-11 02:09:43 +02:00
|
|
|
|
2018-02-21 02:22:23 +01:00
|
|
|
func (prebuilt *AARImport) AndroidMk() android.AndroidMkData {
|
|
|
|
return android.AndroidMkData{
|
|
|
|
Class: "JAVA_LIBRARIES",
|
|
|
|
OutputFile: android.OptionalPathForPath(prebuilt.classpathFile),
|
|
|
|
Include: "$(BUILD_SYSTEM)/soong_java_prebuilt.mk",
|
|
|
|
Extra: []android.AndroidMkExtraFunc{
|
|
|
|
func(w io.Writer, outputFile android.Path) {
|
|
|
|
fmt.Fprintln(w, "LOCAL_UNINSTALLABLE_MODULE := true")
|
|
|
|
fmt.Fprintln(w, "LOCAL_DEX_PREOPT := false")
|
|
|
|
fmt.Fprintln(w, "LOCAL_SOONG_HEADER_JAR :=", prebuilt.classpathFile.String())
|
|
|
|
fmt.Fprintln(w, "LOCAL_SOONG_RESOURCE_EXPORT_PACKAGE :=", prebuilt.exportPackage.String())
|
|
|
|
fmt.Fprintln(w, "LOCAL_SOONG_EXPORT_PROGUARD_FLAGS :=", prebuilt.proguardFlags.String())
|
2018-05-02 21:58:28 +02:00
|
|
|
fmt.Fprintln(w, "LOCAL_SOONG_STATIC_LIBRARY_EXTRA_PACKAGES :=", prebuilt.extraAaptPackagesFile.String())
|
2018-05-23 19:59:28 +02:00
|
|
|
fmt.Fprintln(w, "LOCAL_FULL_MANIFEST_FILE :=", prebuilt.manifest.String())
|
2018-06-26 00:48:06 +02:00
|
|
|
fmt.Fprintln(w, "LOCAL_SDK_VERSION :=", prebuilt.sdkVersion())
|
2018-02-21 02:22:23 +01:00
|
|
|
},
|
|
|
|
},
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2017-08-11 02:09:43 +02:00
|
|
|
func (binary *Binary) AndroidMk() android.AndroidMkData {
|
|
|
|
|
2017-12-05 22:42:45 +01:00
|
|
|
if !binary.isWrapperVariant {
|
|
|
|
return android.AndroidMkData{
|
|
|
|
Class: "JAVA_LIBRARIES",
|
|
|
|
OutputFile: android.OptionalPathForPath(binary.implementationJarFile),
|
|
|
|
Include: "$(BUILD_SYSTEM)/soong_java_prebuilt.mk",
|
|
|
|
Custom: func(w io.Writer, name, prefix, moduleDir string, data android.AndroidMkData) {
|
|
|
|
android.WriteAndroidMkData(w, data)
|
2017-09-08 02:00:22 +02:00
|
|
|
|
2017-12-05 22:42:45 +01:00
|
|
|
fmt.Fprintln(w, "jar_installed_module := $(LOCAL_INSTALLED_MODULE)")
|
|
|
|
},
|
|
|
|
}
|
|
|
|
} else {
|
|
|
|
return android.AndroidMkData{
|
|
|
|
Class: "EXECUTABLES",
|
|
|
|
OutputFile: android.OptionalPathForPath(binary.wrapperFile),
|
|
|
|
Extra: []android.AndroidMkExtraFunc{
|
|
|
|
func(w io.Writer, outputFile android.Path) {
|
|
|
|
fmt.Fprintln(w, "LOCAL_STRIP_MODULE := false")
|
|
|
|
},
|
|
|
|
},
|
|
|
|
Custom: func(w io.Writer, name, prefix, moduleDir string, data android.AndroidMkData) {
|
|
|
|
android.WriteAndroidMkData(w, data)
|
|
|
|
|
|
|
|
// Ensure that the wrapper script timestamp is always updated when the jar is updated
|
|
|
|
fmt.Fprintln(w, "$(LOCAL_INSTALLED_MODULE): $(jar_installed_module)")
|
|
|
|
fmt.Fprintln(w, "jar_installed_module :=")
|
|
|
|
},
|
|
|
|
}
|
2017-08-11 02:09:43 +02:00
|
|
|
}
|
|
|
|
}
|
2017-11-23 01:20:45 +01:00
|
|
|
|
|
|
|
func (app *AndroidApp) AndroidMk() android.AndroidMkData {
|
|
|
|
return android.AndroidMkData{
|
|
|
|
Class: "APPS",
|
|
|
|
OutputFile: android.OptionalPathForPath(app.outputFile),
|
|
|
|
Include: "$(BUILD_SYSTEM)/soong_app_prebuilt.mk",
|
|
|
|
Extra: []android.AndroidMkExtraFunc{
|
|
|
|
func(w io.Writer, outputFile android.Path) {
|
2017-12-14 07:42:59 +01:00
|
|
|
fmt.Fprintln(w, "LOCAL_SOONG_RESOURCE_EXPORT_PACKAGE :=", app.exportPackage.String())
|
|
|
|
if app.dexJarFile != nil {
|
|
|
|
fmt.Fprintln(w, "LOCAL_SOONG_DEX_JAR :=", app.dexJarFile.String())
|
|
|
|
}
|
2017-12-14 22:19:01 +01:00
|
|
|
if app.implementationJarFile != nil {
|
|
|
|
fmt.Fprintln(w, "LOCAL_SOONG_CLASSES_JAR :=", app.implementationJarFile)
|
|
|
|
}
|
|
|
|
if app.headerJarFile != nil {
|
|
|
|
fmt.Fprintln(w, "LOCAL_SOONG_HEADER_JAR :=", app.headerJarFile.String())
|
|
|
|
}
|
2017-12-14 07:42:59 +01:00
|
|
|
if app.jacocoReportClassesFile != nil {
|
|
|
|
fmt.Fprintln(w, "LOCAL_SOONG_JACOCO_REPORT_CLASSES_JAR :=", app.jacocoReportClassesFile.String())
|
|
|
|
}
|
2017-12-28 21:23:20 +01:00
|
|
|
if app.proguardDictionary != nil {
|
|
|
|
fmt.Fprintln(w, "LOCAL_SOONG_PROGUARD_DICT :=", app.proguardDictionary.String())
|
|
|
|
}
|
2017-11-23 01:20:45 +01:00
|
|
|
|
2017-12-14 07:42:59 +01:00
|
|
|
if app.Name() == "framework-res" {
|
|
|
|
fmt.Fprintln(w, "LOCAL_MODULE_PATH := $(TARGET_OUT_JAVA_LIBRARIES)")
|
|
|
|
// Make base_rules.mk not put framework-res in a subdirectory called
|
|
|
|
// framework_res.
|
|
|
|
fmt.Fprintln(w, "LOCAL_NO_STANDARD_LIBRARIES := true")
|
|
|
|
}
|
2017-11-23 01:20:45 +01:00
|
|
|
|
2017-12-14 07:42:59 +01:00
|
|
|
if len(app.rroDirs) > 0 {
|
2018-04-17 19:52:26 +02:00
|
|
|
// Reverse the order, Soong stores rroDirs in aapt2 order (low to high priority), but Make
|
|
|
|
// expects it in LOCAL_RESOURCE_DIRS order (high to low priority).
|
|
|
|
fmt.Fprintln(w, "LOCAL_SOONG_RRO_DIRS :=", strings.Join(android.ReversePaths(app.rroDirs).Strings(), " "))
|
2017-12-14 07:42:59 +01:00
|
|
|
}
|
2017-12-01 05:13:19 +01:00
|
|
|
|
2017-12-14 07:42:59 +01:00
|
|
|
if Bool(app.appProperties.Export_package_resources) {
|
|
|
|
fmt.Fprintln(w, "LOCAL_EXPORT_PACKAGE_RESOURCES := true")
|
2017-11-23 01:20:45 +01:00
|
|
|
}
|
2017-12-14 07:42:59 +01:00
|
|
|
|
|
|
|
fmt.Fprintln(w, "LOCAL_FULL_MANIFEST_FILE :=", app.manifestPath.String())
|
|
|
|
|
2017-12-14 07:46:28 +01:00
|
|
|
if Bool(app.appProperties.Privileged) {
|
|
|
|
fmt.Fprintln(w, "LOCAL_PRIVILEGED_MODULE := true")
|
|
|
|
}
|
2017-12-14 20:22:55 +01:00
|
|
|
|
|
|
|
fmt.Fprintln(w, "LOCAL_CERTIFICATE :=", app.certificate.pem.String())
|
2017-11-23 01:20:45 +01:00
|
|
|
},
|
|
|
|
},
|
|
|
|
}
|
2018-03-28 23:58:31 +02:00
|
|
|
}
|
|
|
|
|
2018-05-22 20:11:52 +02:00
|
|
|
func (a *AndroidTest) AndroidMk() android.AndroidMkData {
|
|
|
|
data := a.AndroidApp.AndroidMk()
|
|
|
|
data.Extra = append(data.Extra, func(w io.Writer, outputFile android.Path) {
|
|
|
|
fmt.Fprintln(w, "LOCAL_MODULE_TAGS := tests")
|
|
|
|
if len(a.testProperties.Test_suites) > 0 {
|
|
|
|
fmt.Fprintln(w, "LOCAL_COMPATIBILITY_SUITE :=",
|
|
|
|
strings.Join(a.testProperties.Test_suites, " "))
|
|
|
|
}
|
2018-08-03 00:00:46 +02:00
|
|
|
if a.testProperties.Test_config != nil {
|
|
|
|
fmt.Fprintln(w, "LOCAL_TEST_CONFIG :=",
|
|
|
|
*a.testProperties.Test_config)
|
|
|
|
}
|
2018-05-22 20:11:52 +02:00
|
|
|
})
|
|
|
|
|
|
|
|
return data
|
|
|
|
}
|
|
|
|
|
2018-03-28 23:58:31 +02:00
|
|
|
func (a *AndroidLibrary) AndroidMk() android.AndroidMkData {
|
|
|
|
data := a.Library.AndroidMk()
|
|
|
|
|
|
|
|
data.Extra = append(data.Extra, func(w io.Writer, outputFile android.Path) {
|
|
|
|
if a.proguardDictionary != nil {
|
|
|
|
fmt.Fprintln(w, "LOCAL_SOONG_PROGUARD_DICT :=", a.proguardDictionary.String())
|
|
|
|
}
|
2017-11-23 01:20:45 +01:00
|
|
|
|
2018-03-28 23:58:31 +02:00
|
|
|
if a.Name() == "framework-res" {
|
|
|
|
fmt.Fprintln(w, "LOCAL_MODULE_PATH := $(TARGET_OUT_JAVA_LIBRARIES)")
|
|
|
|
// Make base_rules.mk not put framework-res in a subdirectory called
|
|
|
|
// framework_res.
|
|
|
|
fmt.Fprintln(w, "LOCAL_NO_STANDARD_LIBRARIES := true")
|
|
|
|
}
|
|
|
|
|
|
|
|
fmt.Fprintln(w, "LOCAL_SOONG_RESOURCE_EXPORT_PACKAGE :=", a.exportPackage.String())
|
2018-05-02 21:58:28 +02:00
|
|
|
fmt.Fprintln(w, "LOCAL_SOONG_STATIC_LIBRARY_EXTRA_PACKAGES :=", a.extraAaptPackagesFile.String())
|
2018-03-28 23:58:31 +02:00
|
|
|
fmt.Fprintln(w, "LOCAL_FULL_MANIFEST_FILE :=", a.manifestPath.String())
|
2018-05-01 00:55:11 +02:00
|
|
|
fmt.Fprintln(w, "LOCAL_SOONG_EXPORT_PROGUARD_FLAGS :=",
|
|
|
|
strings.Join(a.exportedProguardFlagFiles.Strings(), " "))
|
2018-03-28 23:58:31 +02:00
|
|
|
fmt.Fprintln(w, "LOCAL_UNINSTALLABLE_MODULE := true")
|
|
|
|
fmt.Fprintln(w, "LOCAL_DEX_PREOPT := false")
|
|
|
|
})
|
|
|
|
|
|
|
|
return data
|
2017-11-23 01:20:45 +01:00
|
|
|
}
|
2018-01-11 01:06:12 +01:00
|
|
|
|
|
|
|
func (jd *Javadoc) AndroidMk() android.AndroidMkData {
|
|
|
|
return android.AndroidMkData{
|
|
|
|
Class: "JAVA_LIBRARIES",
|
2018-03-09 02:26:16 +01:00
|
|
|
OutputFile: android.OptionalPathForPath(jd.stubsSrcJar),
|
2018-01-11 01:06:12 +01:00
|
|
|
Include: "$(BUILD_SYSTEM)/soong_java_prebuilt.mk",
|
|
|
|
Extra: []android.AndroidMkExtraFunc{
|
|
|
|
func(w io.Writer, outputFile android.Path) {
|
2018-04-11 01:14:46 +02:00
|
|
|
if BoolDefault(jd.properties.Installable, true) {
|
2018-01-11 01:06:12 +01:00
|
|
|
fmt.Fprintln(w, "LOCAL_DROIDDOC_DOC_ZIP := ", jd.docZip.String())
|
|
|
|
}
|
2018-03-09 02:26:16 +01:00
|
|
|
if jd.stubsSrcJar != nil {
|
|
|
|
fmt.Fprintln(w, "LOCAL_DROIDDOC_STUBS_SRCJAR := ", jd.stubsSrcJar.String())
|
2018-01-11 01:06:12 +01:00
|
|
|
}
|
|
|
|
},
|
|
|
|
},
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
func (ddoc *Droiddoc) AndroidMk() android.AndroidMkData {
|
|
|
|
return android.AndroidMkData{
|
|
|
|
Class: "JAVA_LIBRARIES",
|
2018-03-09 02:26:16 +01:00
|
|
|
OutputFile: android.OptionalPathForPath(ddoc.stubsSrcJar),
|
2018-01-11 01:06:12 +01:00
|
|
|
Include: "$(BUILD_SYSTEM)/soong_java_prebuilt.mk",
|
|
|
|
Extra: []android.AndroidMkExtraFunc{
|
|
|
|
func(w io.Writer, outputFile android.Path) {
|
2018-04-11 01:14:46 +02:00
|
|
|
if BoolDefault(ddoc.Javadoc.properties.Installable, true) {
|
2018-01-11 01:06:12 +01:00
|
|
|
fmt.Fprintln(w, "LOCAL_DROIDDOC_DOC_ZIP := ", ddoc.Javadoc.docZip.String())
|
|
|
|
}
|
2018-03-09 02:26:16 +01:00
|
|
|
if ddoc.Javadoc.stubsSrcJar != nil {
|
|
|
|
fmt.Fprintln(w, "LOCAL_DROIDDOC_STUBS_SRCJAR := ", ddoc.Javadoc.stubsSrcJar.String())
|
2018-01-11 01:06:12 +01:00
|
|
|
}
|
2018-06-26 22:24:05 +02:00
|
|
|
if ddoc.annotationsZip != nil {
|
|
|
|
fmt.Fprintln(w, "LOCAL_DROIDDOC_ANNOTATIONS_ZIP := ", ddoc.annotationsZip.String())
|
|
|
|
}
|
2018-05-05 03:49:16 +02:00
|
|
|
if ddoc.checkCurrentApiTimestamp != nil {
|
|
|
|
fmt.Fprintln(w, ".PHONY:", ddoc.Name()+"-check-current-api")
|
|
|
|
fmt.Fprintln(w, ddoc.Name()+"-check-current-api:",
|
|
|
|
ddoc.checkCurrentApiTimestamp.String())
|
|
|
|
|
|
|
|
fmt.Fprintln(w, ".PHONY: checkapi")
|
2018-05-12 15:21:20 +02:00
|
|
|
fmt.Fprintln(w, "checkapi:",
|
2018-05-05 03:49:16 +02:00
|
|
|
ddoc.checkCurrentApiTimestamp.String())
|
|
|
|
|
|
|
|
fmt.Fprintln(w, ".PHONY: droidcore")
|
|
|
|
fmt.Fprintln(w, "droidcore: checkapi")
|
|
|
|
}
|
|
|
|
if ddoc.updateCurrentApiTimestamp != nil {
|
2018-07-24 22:00:52 +02:00
|
|
|
fmt.Fprintln(w, ".PHONY:", ddoc.Name()+"-update-current-api")
|
2018-05-05 03:49:16 +02:00
|
|
|
fmt.Fprintln(w, ddoc.Name()+"-update-current-api:",
|
|
|
|
ddoc.updateCurrentApiTimestamp.String())
|
|
|
|
|
|
|
|
fmt.Fprintln(w, ".PHONY: update-api")
|
|
|
|
fmt.Fprintln(w, "update-api:",
|
|
|
|
ddoc.updateCurrentApiTimestamp.String())
|
|
|
|
}
|
|
|
|
if ddoc.checkLastReleasedApiTimestamp != nil {
|
|
|
|
fmt.Fprintln(w, ".PHONY:", ddoc.Name()+"-check-last-released-api")
|
|
|
|
fmt.Fprintln(w, ddoc.Name()+"-check-last-released-api:",
|
|
|
|
ddoc.checkLastReleasedApiTimestamp.String())
|
|
|
|
}
|
2018-03-14 00:17:01 +01:00
|
|
|
apiFilePrefix := "INTERNAL_PLATFORM_"
|
|
|
|
if String(ddoc.properties.Api_tag_name) != "" {
|
|
|
|
apiFilePrefix += String(ddoc.properties.Api_tag_name) + "_"
|
|
|
|
}
|
2018-05-05 03:49:16 +02:00
|
|
|
if ddoc.apiFile != nil {
|
2018-03-14 00:17:01 +01:00
|
|
|
fmt.Fprintln(w, apiFilePrefix+"API_FILE := ", ddoc.apiFile.String())
|
|
|
|
}
|
2018-05-31 14:56:46 +02:00
|
|
|
if ddoc.dexApiFile != nil {
|
|
|
|
fmt.Fprintln(w, apiFilePrefix+"DEX_API_FILE := ", ddoc.dexApiFile.String())
|
|
|
|
}
|
2018-05-05 03:49:16 +02:00
|
|
|
if ddoc.privateApiFile != nil {
|
2018-03-14 00:17:01 +01:00
|
|
|
fmt.Fprintln(w, apiFilePrefix+"PRIVATE_API_FILE := ", ddoc.privateApiFile.String())
|
|
|
|
}
|
2018-05-05 03:49:16 +02:00
|
|
|
if ddoc.privateDexApiFile != nil {
|
2018-03-14 00:17:01 +01:00
|
|
|
fmt.Fprintln(w, apiFilePrefix+"PRIVATE_DEX_API_FILE := ", ddoc.privateDexApiFile.String())
|
|
|
|
}
|
2018-05-05 03:49:16 +02:00
|
|
|
if ddoc.removedApiFile != nil {
|
2018-03-14 00:17:01 +01:00
|
|
|
fmt.Fprintln(w, apiFilePrefix+"REMOVED_API_FILE := ", ddoc.removedApiFile.String())
|
|
|
|
}
|
2018-05-05 03:49:16 +02:00
|
|
|
if ddoc.removedDexApiFile != nil {
|
2018-04-24 17:23:29 +02:00
|
|
|
fmt.Fprintln(w, apiFilePrefix+"REMOVED_DEX_API_FILE := ", ddoc.removedDexApiFile.String())
|
|
|
|
}
|
2018-05-05 03:49:16 +02:00
|
|
|
if ddoc.exactApiFile != nil {
|
2018-03-14 00:17:01 +01:00
|
|
|
fmt.Fprintln(w, apiFilePrefix+"EXACT_API_FILE := ", ddoc.exactApiFile.String())
|
|
|
|
}
|
2018-01-11 01:06:12 +01:00
|
|
|
},
|
|
|
|
},
|
|
|
|
}
|
|
|
|
}
|