commit | 32e413a2946d2afdb4b62294b412d9a5df8c9806 | [log] [tgz] |
---|---|---|
author | Cole Faust <colefaust@google.com> | Mon Apr 04 10:40:01 2022 -0700 |
committer | Cole Faust <colefaust@google.com> | Mon Apr 04 11:55:02 2022 -0700 |
tree | 5e6bb4a5816554e861ed7138deefb1f0979fe53d | |
parent | 56d7c008bc2e37a74bbf34a4b7fe82c22b53847b [diff] |
Fix single value variable inheritance order List variables needed to be percolated in the order of inherit() calls. children.keys() was in that order, due to starlark dictionaries being iterable in the order of insertion, but the previous cl broke that behavior by sorting them. Instead, only sort the children for single value variables. Fixes: 226206409 Fixes: 228044099 Test: ./out/rbcrun ./build/make/tests/run.rbc and testing aosp_arm64 Change-Id: I5b91514e87b158b615e4d4ec7868fccb0248379b
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.