commit | 15399ad50af81a3b418a75d0666341b12855e8e6 | [log] [tgz] |
---|---|---|
author | Martin Stjernholm <mast@google.com> | Fri Feb 09 19:41:45 2024 +0000 |
committer | Martin Stjernholm <mast@google.com> | Tue Feb 13 12:35:02 2024 +0000 |
tree | 85578797f1e8ead833c1f4a88501348290e8d3d4 | |
parent | 0205ee7a2a94609a928240d18ee60d26c2431e06 [diff] |
Skip builds that have no targets when a subset of modules are built. Without this there will be no targets in the build command lines, so they'll try to build `droid`, which doesn't work in unbundled mode. Test: env TARGET_BUILD_APPS=com.android.runtime \ packages/modules/common/build/mainline_modules_sdks.sh \ --build-release latest --build-platform-sdks-for-mainline Test: packages/modules/common/build/mainline_modules_sdks.sh \ --build-release latest Bug: 323555083 Change-Id: I8a8e5311c77c5a1f879e992a5c24159bcb3b77a5
This project includes mainline build and other utility code. Any library code intended for use by modules should go in frameworks/libs/modules-utils
instead.
This project uses a single source path for java code. All java code should go in the java
directory with subdirectories corresponding to the java package. Android.bp
files should go alongside the java source files, and should only include java source for a single java package to encourage good code hygiene.
Tests for java code should go in the javatests
directory and follow the same structure.