Make libaidlcommonsupport available to apex modules

Making libaidlcommonsupport available to apex has the following impact
on affected apex modules. All sizes were collected on top-of-tree
git_master for cf_x86_64_phone-userdebug.

libaidlcommonsupport.a:
* lib: 93K
* lib64: 128K

Diff from minimally including libaidlcommonsupport:
* lib/libneuralnetworks.so: +1K
* lib/libneuralnetworks_shim.so: +0K
* lib64/libneuralnetworks.so: +1K
* lib64/libneuralnetworks_shim.so: +0K

There's only a small change in size to libneuralnetworks.so and
libneuralnetworks_shim.so because both had code that performed the same
conversions that are done in libaidlcommonsupport.

Bug: 183118727
Test: mma
Change-Id: I04403eab718161d6a77499e2a9af82ee61ed42af
Merged-In: I04403eab718161d6a77499e2a9af82ee61ed42af
(cherry picked from commit dfe8b24fadd85748aecd5aacdc8ed16ec4f99002)
1 file changed
tree: 2d1026a1ebc04254efad0893a19e63a3cf84d66a
  1. build/
  2. java/
  3. sdk/
  4. MODULES_OWNERS
  5. OWNERS
  6. PREUPLOAD.cfg
  7. README.md
README.md

packages/modules/common

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.

java code

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.