diff options
| author | 2024-08-07 00:13:14 +0000 | |
|---|---|---|
| committer | 2024-08-07 00:13:14 +0000 | |
| commit | 7dbfa89b0bda8c54a0890afef6d714c856f93d34 (patch) | |
| tree | 76ed2814ed71fb9a99172011889021df10f3442b | |
| parent | 4b6785545143fda642baed58eb0f11e65b9a2b50 (diff) | |
| parent | 6aefa4c054d786e1867f1e298f5da11d8dbdad77 (diff) | |
Merge "Create dir for build-time system feature infra" into main
| -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. |