Merge "Implement host_required and target_required properties." am: b9045cf28c

am: 0e47e406de

Change-Id: I476551e94329a1703d9afddc6cb25e7311ac64ef
This commit is contained in:
Sasha Smundak
2019-04-05 08:34:46 -07:00
committed by android-build-merger
8 changed files with 80 additions and 27 deletions

View File

@@ -38,7 +38,7 @@ func (library *Library) AndroidMkHostDex(w io.Writer, name string, data android.
}
fmt.Fprintln(w, "LOCAL_SOONG_HEADER_JAR :=", library.headerJarFile.String())
fmt.Fprintln(w, "LOCAL_SOONG_CLASSES_JAR :=", library.implementationAndResourcesJar.String())
fmt.Fprintln(w, "LOCAL_REQUIRED_MODULES := "+strings.Join(data.Required, " "))
android.WriteRequiredModulesSettings(w, data)
fmt.Fprintln(w, "include $(BUILD_SYSTEM)/soong_java_prebuilt.mk")
}
}