commit | 93d11b7bc4bbeb31492f8c5b42bbdfef9aea5783 | [log] [tgz] |
---|---|---|
author | Dennis Shen <dzshen@google.com> | Mon Apr 01 18:20:34 2024 +0000 |
committer | Dennis Shen <dzshen@google.com> | Mon Apr 01 18:30:06 2024 +0000 |
tree | 6426135df650590c7306ad40bda33ee9fe603ab8 | |
parent | 7167ed9a2c79e6959cba9623414773bec3791006 [diff] |
aconfig: use an enum to represetn flag type Flag type is encoded as a u16 in flag table file. Previously we are assinging value of 1 for flag type to indicate that they are all boolean flags. In this change, we formalize the flag type designation with an enum. ReadWriteBoolean -> 0 ReadOnlyBoolean -> 1 FixedReadOnlyBoolean -> 2 Bug: b/321077378 Test: atest aconfg.test; atest aconfig_storage_file.test Change-Id: I114818435b44f1e82a611f0509787993a5a8e70e
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.