commit | 91f53fddc7bb340a3d0c826677cf0767a8cfba1f | [log] [tgz] |
---|---|---|
author | Colin Cross <ccross@android.com> | Mon Apr 29 10:25:20 2019 -0700 |
committer | Colin Cross <ccross@android.com> | Mon Apr 29 10:31:02 2019 -0700 |
tree | ec05e64233e8897e71cbdad585b1e821b941fcbd | |
parent | 0376d7dcbb5bd412344667751b200430fa358f20 [diff] |
Remove reverse-list from java static libraries. Make was reversing the list of static library dependencies when passing it to merge_zips. This was originally done to match the behavior of unzipping each static library in order into the same directory, overwriting duplicates each time. This order is counter-intuitive, and Soong does it the sensible way (first one takes priority, the same as the compile classpath). Fix Make to match Soong. Bug: 131603999 Test: m checkbuild Test: compare target_files.zip Change-Id: Idad125068ed2f750dc2dd95ab82bacb6e074489d
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.