commit | 48d7b3462d4b1fffa0359e179af5abcf8e79c36a | [log] [tgz] |
---|---|---|
author | Devin Moore <devinmoore@google.com> | Mon May 15 18:08:30 2023 +0000 |
committer | Devin Moore <devinmoore@google.com> | Mon Jun 05 20:17:50 2023 +0000 |
tree | 8c7a678cf26e4eb5a6e909e514a9b56036fb16b0 | |
parent | 7edc734ec10dfa1ae8d6c753d5f462b4050496e4 [diff] |
Add static_libs to module-info.json This is helpful for analyzing how often a library is included statically on a device. If a large library is linked statically in many processes in a single device, it may be a good candidate for shared linking instead. This increases the size of module-info.json file on Cuttlefish by ~12.5% from 65MB to 72MB. Test: m Bug: 280829178 Change-Id: I3614d86d799810e1ce845e1097f43f1ec0a412a3
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.