commit | 22343ff42c4443ce84f86f147c46bf4200b0acd5 | [log] [tgz] |
---|---|---|
author | colincross <ccross@android.com> | Fri Jan 22 16:22:41 2021 -0800 |
committer | GitHub <noreply@github.com> | Fri Jan 22 16:22:41 2021 -0800 |
tree | ba9f651d4cbed9aa27f4e360cee3878e844edcb1 | |
parent | 2a29698186cf6daa72b1ad46e230550e7d7a7b11 [diff] | |
parent | 7ff2e8d2a42d77cd23e1a9af17662345e914e7ee [diff] |
Merge pull request #342 from colincross/optimize_updateDependencies Optimize updateDependencies
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.