diff options
| author | 2024-08-07 00:45:06 +0000 | |
|---|---|---|
| committer | 2024-08-07 00:45:06 +0000 | |
| commit | 90b0f2febe12e30df9dae892507403d4dc2aa80d (patch) | |
| tree | ee19a0af12092018d69ed868ba62db9e4732d43e | |
| parent | 1762299fb203b28b5599d0b0f0d2b67187066f41 (diff) | |
| parent | ea6e1f2e1646e477e966907df0f530d82bd0ba88 (diff) | |
Merge "Create dir for build-time system feature infra" into main am: 7dbfa89b0b am: ea6e1f2e16
Original change: https://android-review.googlesource.com/c/platform/frameworks/base/+/3202558
Change-Id: I807f2205f4580b71ee80c85fe5e53d3f8c7d3bd1
Signed-off-by: Automerger Merge Worker <android-build-automerger-merge-worker@system.gserviceaccount.com>
| -rw-r--r-- | tools/systemfeatures/OWNERS | 1 | ||||
| -rw-r--r-- | tools/systemfeatures/README.md | 11 |
2 files changed, 12 insertions, 0 deletions
diff --git a/tools/systemfeatures/OWNERS b/tools/systemfeatures/OWNERS new file mode 100644 index 000000000000..66c8506f58be --- /dev/null +++ b/tools/systemfeatures/OWNERS @@ -0,0 +1 @@ +include /PERFORMANCE_OWNERS diff --git a/tools/systemfeatures/README.md b/tools/systemfeatures/README.md new file mode 100644 index 000000000000..5836f81e5fd3 --- /dev/null +++ b/tools/systemfeatures/README.md @@ -0,0 +1,11 @@ +# Build-time system feature support + +## Overview + +System features exposed from `PackageManager` are defined and aggregated as +`<feature>` xml attributes across various partitions, and are currently queried +at runtime through the framework. This directory contains tooling that will +support *build-time* queries of select system features, enabling optimizations +like code stripping and conditionally dependencies when so configured. + +### TODO(b/203143243): Expand readme after landing codegen. |