commit | 52176e98518be598f45b6ec278d5c392a5a43acb | [log] [tgz] |
---|---|---|
author | Colin Cross <ccross@android.com> | Mon Dec 14 11:37:37 2020 -0800 |
committer | Colin Cross <ccross@android.com> | Mon Dec 14 11:37:37 2020 -0800 |
tree | b1bec8ecc80e846fed1d68973154c19c6a7aa8ae | |
parent | 14e63c229f8afd61d39c69a30353bcf242ea47e4 [diff] | |
parent | 53e92a0de6c2528401cbf5cf3b1be9958fbe99e9 [diff] |
Merge remote-tracking branch 'aosp/upstream' * aosp/upstream: bpmodify: support numerical sort (#332) Actually pause mutators when adding dependencies (#335) Test: m checkbuild Change-Id: I2ebccd43a2c5b7fd4796861fb519b6401a2c45b3
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.