Go to file
Jeongik Cha 5b1d149586 RRO shouldn't depend on frameworks or system(_ext) app when TARGET_BUILD_UNBUNDLED
In the case of unbundled build, the module in vendor should use
system(_ext) module by prebuilt one. But RRO depends on system module
directly depending on some conditions(packages exporting resources)

In this change,
 1. Temporarily make LOCAL_RES_LIBRARIES empty(For now, auto generated
 RRO doesn't use overlaid package's resources), enable it when prebuilts
 are ready.
 2. According to (1), its SDK_VERSION can be current)

Bug: 187404676
Test: TARGET_BUILD_UNBUNDLED_IMAGE m vendorimage, and check if there is
no build error regarding RRO.

Change-Id: I94e3122372dd20c942b2c858070a6ca797312792
Merged-In: I94e3122372dd20c942b2c858070a6ca797312792
(cherry picked from commit f93c13d51b)
2021-06-04 00:05:55 +00:00
common
core RRO shouldn't depend on frameworks or system(_ext) app when TARGET_BUILD_UNBUNDLED 2021-06-04 00:05:55 +00:00
packaging
target Merge "Revert "Revert "Re-land "Enable apex compression on all devices with updatable apex""" into sc-dev 2021-06-03 13:59:28 +00:00
tests Product configuration in Starlark support files. 2021-03-18 10:52:05 -07:00
tools Merge "Check super size for factory OTA at build time" into sc-dev 2021-06-02 21:53:36 +00:00
.gitignore
Android.bp
Changes.md Add documentation for <uses-library> checks. 2021-03-31 11:56:45 +01:00
CleanSpec.mk Merge "Rename vendor-ramdisk to vendor_ramdisk" am: b10f7d2a9c am: 2c789cf026 am: be8682a693 2021-03-04 06:53:52 +00:00
Deprecation.md
METADATA
OWNERS
PREUPLOAD.cfg
README.md
Usage.txt
banchanHelp.sh Allow selecting a different product in banchan. 2021-04-19 18:32:00 +01:00
buildspec.mk.default
envsetup.sh Use python3 specifically for envsetup.sh 2021-04-29 15:44:29 -07:00
help.sh Fix the help script. 2021-03-25 14:40:44 -07:00
navbar.md
rbesetup.sh
tapasHelp.sh

README.md

Android Make Build System

This is the Makefile-based portion of the Android Build System.

For documentation on how to run a build, see Usage.txt

For a list of behavioral changes useful for Android.mk writers see Changes.md

For an outdated reference on Android.mk files, see build-system.html. Our Android.mk files look similar, but are entirely different from the Android.mk files used by the NDK build system. When searching for documentation elsewhere, ensure that it is for the platform build system -- most are not.

This Makefile-based system is in the process of being replaced with Soong, a new build system written in Go. During the transition, all of these makefiles are read by Kati, and generate a ninja file instead of being executed directly. That's combined with a ninja file read by Soong so that the build graph of the two systems can be combined and run as one.