commit | 2a29698186cf6daa72b1ad46e230550e7d7a7b11 | [log] [tgz] |
---|---|---|
author | colincross <ccross@android.com> | Fri Jan 22 16:22:22 2021 -0800 |
committer | GitHub <noreply@github.com> | Fri Jan 22 16:22:22 2021 -0800 |
tree | 744f36bc03381a11e794a499a91c1727d7c66e0a | |
parent | bcd5686660315df6ee5540a2d8647ddf6123545a [diff] | |
parent | 8a40148408c1b91511a649fe135962bafefebc49 [diff] |
Merge pull request #343 from colincross/optimize_ninja_writer Optimize ninja writer
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.