commit | f8b5042c86a818f7666ccd40c46be88bc2be0a7a | [log] [tgz] |
---|---|---|
author | Colin Cross <ccross@android.com> | Wed Aug 10 12:56:40 2016 -0700 |
committer | Colin Cross <ccross@android.com> | Wed Aug 10 16:31:35 2016 -0700 |
tree | 3e754b6a0c10b9e04b5142d490872661d49271b7 | |
parent | 93c4cf686150a160edf1a086f7394f027efec186 [diff] |
Implement EarlyMutators with BottomUpMutators Get rid of runEarlyMutators, and implement EarlyMutators as a shim around BottomUpMutators. Removes mostly-duplicate code between runEarlyMutators and runBottomUpMutator to allow parallelizing runBottomUpMutator. Change-Id: I66a051cb8710770b47da21d35e55aa49c84e9be8
Blueprint is a meta-build system that reads in Blueprints files that describe modules that need to be built, and produces a Ninja manifest describing the commands that need to be run and their dependencies. Where most build systems use built-in rules or a domain-specific language to describe the logic for converting module descriptions to build rules, Blueprint delegates this to per-project build logic written in Go. For large, heterogenous projects this allows the inherent complexity of the build logic to be maintained in a high-level language, while still allowing simple changes to individual modules by modifying easy to understand Blueprints files.