Lines Matching refs:prebuilt
190 func (prebuilt *Import) AndroidMkEntries() []android.AndroidMkEntries {
191 if prebuilt.hideApexVariantFromMake || !prebuilt.ContainingSdk().Unversioned() {
198 OutputFile: android.OptionalPathForPath(prebuilt.combinedClasspathFile),
202 entries.SetBool("LOCAL_UNINSTALLABLE_MODULE", !Bool(prebuilt.properties.Installable))
203 if prebuilt.dexJarFile != nil {
204 entries.SetPath("LOCAL_SOONG_DEX_JAR", prebuilt.dexJarFile)
206 entries.SetPath("LOCAL_SOONG_HEADER_JAR", prebuilt.combinedClasspathFile)
207 entries.SetPath("LOCAL_SOONG_CLASSES_JAR", prebuilt.combinedClasspathFile)
208 entries.SetString("LOCAL_SDK_VERSION", prebuilt.sdkVersion.String())
209 entries.SetString("LOCAL_MODULE_STEM", prebuilt.Stem())
215 func (prebuilt *DexImport) AndroidMkEntries() []android.AndroidMkEntries {
216 if prebuilt.hideApexVariantFromMake {
223 OutputFile: android.OptionalPathForPath(prebuilt.dexJarFile),
227 if prebuilt.dexJarFile != nil {
228 entries.SetPath("LOCAL_SOONG_DEX_JAR", prebuilt.dexJarFile)
230 if len(prebuilt.dexpreopter.builtInstalled) > 0 {
231 entries.SetString("LOCAL_SOONG_BUILT_INSTALLED", prebuilt.dexpreopter.builtInstalled)
233 entries.SetString("LOCAL_MODULE_STEM", prebuilt.Stem())
239 func (prebuilt *AARImport) AndroidMkEntries() []android.AndroidMkEntries {
240 if prebuilt.hideApexVariantFromMake {
247 OutputFile: android.OptionalPathForPath(prebuilt.classpathFile),
252 entries.SetPath("LOCAL_SOONG_HEADER_JAR", prebuilt.classpathFile)
253 entries.SetPath("LOCAL_SOONG_CLASSES_JAR", prebuilt.classpathFile)
254 entries.SetPath("LOCAL_SOONG_RESOURCE_EXPORT_PACKAGE", prebuilt.exportPackage)
255 entries.SetPath("LOCAL_SOONG_EXPORT_PROGUARD_FLAGS", prebuilt.proguardFlags)
256 entries.SetPath("LOCAL_SOONG_STATIC_LIBRARY_EXTRA_PACKAGES", prebuilt.extraAaptPackagesFile)
257 entries.SetPath("LOCAL_FULL_MANIFEST_FILE", prebuilt.manifest)
258 entries.SetString("LOCAL_SDK_VERSION", prebuilt.sdkVersion.String())