commit | aef5f3b7f20533310529fe10ac617c89571d0f68 | [log] [tgz] |
---|---|---|
author | colincross <ccross@android.com> | Tue Feb 09 09:17:17 2021 -0800 |
committer | GitHub <noreply@github.com> | Tue Feb 09 09:17:17 2021 -0800 |
tree | b5381d1b82e0a5003ee0698709020a67f1b6ac1f | |
parent | e09509592d34f4491a371045c218fdf2bfbccd0d [diff] | |
parent | 7d4958d84c24c4d4820b0039ddf570ac675e86bc [diff] |
Merge pull request #344 from colincross/parallel Fix detecting cycles in parallelVisit
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.