Lines Matching refs:prebuilt
184 func (prebuilt *Import) AndroidMkEntries() []android.AndroidMkEntries {
185 if !prebuilt.IsForPlatform() || !prebuilt.ContainingSdk().Unversioned() {
192 OutputFile: android.OptionalPathForPath(prebuilt.combinedClasspathFile),
196 entries.SetBool("LOCAL_UNINSTALLABLE_MODULE", !Bool(prebuilt.properties.Installable))
197 entries.SetPath("LOCAL_SOONG_HEADER_JAR", prebuilt.combinedClasspathFile)
198 entries.SetPath("LOCAL_SOONG_CLASSES_JAR", prebuilt.combinedClasspathFile)
199 entries.SetString("LOCAL_SDK_VERSION", prebuilt.sdkVersion().raw)
200 entries.SetString("LOCAL_MODULE_STEM", prebuilt.Stem())
206 func (prebuilt *DexImport) AndroidMkEntries() []android.AndroidMkEntries {
207 if !prebuilt.IsForPlatform() {
214 OutputFile: android.OptionalPathForPath(prebuilt.maybeStrippedDexJarFile),
218 if prebuilt.dexJarFile != nil {
219 entries.SetPath("LOCAL_SOONG_DEX_JAR", prebuilt.dexJarFile)
222 entries.SetPath("LOCAL_SOONG_HEADER_JAR", prebuilt.dexJarFile)
223 entries.SetPath("LOCAL_SOONG_CLASSES_JAR", prebuilt.dexJarFile)
225 if len(prebuilt.dexpreopter.builtInstalled) > 0 {
226 entries.SetString("LOCAL_SOONG_BUILT_INSTALLED", prebuilt.dexpreopter.builtInstalled)
228 entries.SetString("LOCAL_MODULE_STEM", prebuilt.Stem())
234 func (prebuilt *AARImport) AndroidMkEntries() []android.AndroidMkEntries {
235 if !prebuilt.IsForPlatform() {
242 OutputFile: android.OptionalPathForPath(prebuilt.classpathFile),
247 entries.SetPath("LOCAL_SOONG_HEADER_JAR", prebuilt.classpathFile)
248 entries.SetPath("LOCAL_SOONG_CLASSES_JAR", prebuilt.classpathFile)
249 entries.SetPath("LOCAL_SOONG_RESOURCE_EXPORT_PACKAGE", prebuilt.exportPackage)
250 entries.SetPath("LOCAL_SOONG_EXPORT_PROGUARD_FLAGS", prebuilt.proguardFlags)
251 entries.SetPath("LOCAL_SOONG_STATIC_LIBRARY_EXTRA_PACKAGES", prebuilt.extraAaptPackagesFile)
252 entries.SetPath("LOCAL_FULL_MANIFEST_FILE", prebuilt.manifest)
253 entries.SetString("LOCAL_SDK_VERSION", prebuilt.sdkVersion().raw)