commit | 49a8b95d4e18e04e61025d531de35df32f827b93 | [log] [tgz] |
---|---|---|
author | colincross <ccross@android.com> | Wed Jan 20 13:34:51 2021 -0800 |
committer | GitHub <noreply@github.com> | Wed Jan 20 13:34:51 2021 -0800 |
tree | 3a47c0a4681fc7edb3b9291d062a73dca6c3bd5f | |
parent | 94a5c0169390ee29fe3ab8f8668c7a73e99d944e [diff] | |
parent | e535c97cc90096a84861fc8743f6a9515a22b68e [diff] |
Merge pull request #339 from colincross/optimize_glob Remove redundant stat/lstat calls from glob
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.