commit | bdab1b5329e615ab45bc30463be5b7c6f61b8717 | [log] [tgz] |
---|---|---|
author | Nelson Li <nelsonli@google.com> | Tue Jul 23 17:10:04 2024 +0800 |
committer | Nelson Li <nelsonli@google.com> | Fri Jul 26 15:28:46 2024 +0800 |
tree | f7f636ff6d1a6cc5da2c65100df522acad418786 | |
parent | e110c68023db42cc803fc627d0efe07ee5523eb3 [diff] |
Add art_build_host_debug to soong config variable The `ART_BUILD_HOST_DEBUG` environment variable is frequently used in Android.mk files within the art/ directory. By adding it to soong_config_variable, we make it accessible to the Soong build system, which will be essential when converting art modules to Android.bp. Bug: 347142939 Test: 1) m -j art-libartd-libopenjdkd-host-dependency 2) ART_BUILD_HOST_DEBUG=false m -j art-libartd-libopenjdkd-host-dependency 3) cd art && mm/mmm/mmma, then, check `libopenjdkd` be built. Change-Id: I20401f29a1636b98dd8fc2dc4e679d1832a89435
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.