commit | 8d11febd5950228f506ce9f21898fabb8c125686 | [log] [tgz] |
---|---|---|
author | Isaac Chen <ycchen@google.com> | Wed Jan 31 14:27:37 2018 +0800 |
committer | Isaac Chen <ycchen@google.com> | Wed Jan 31 14:27:37 2018 +0800 |
tree | ab9c375e0098c007cb242e33dbdfebbaf76c5633 | |
parent | 33bb0919710c15999c952df994211c747b93b05f [diff] |
Add ro.vendor.product.cpu.* to vendor/build.prop CPU/ABIs related information is already in system/build.prop. It should also be included in the vendor image so it can still be examined outside of a device, build environment, or $OUT directory, by a standalone utility to check its basic characteristics and if it's compatible with some specific system image (usually GSI). Bug: 72079894 Test: Built and verified aosp_x86(_64): # On host $ grep ro.vendor.product.cpu $OUT/vendor/build.prop # On device $ getprop | grep ro.vendor.product $ su # grep ro.vendor.product /vendor/build.prop Change-Id: Ic9ac8065d5983710840e33a805f982de75d86ce3
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.