commit | 6ea3f9ddd2fc8ec9815c8e4c7095bff91f0714c8 | [log] [tgz] |
---|---|---|
author | colincross <ccross@android.com> | Thu Jan 16 11:01:00 2020 -0800 |
committer | GitHub <noreply@github.com> | Thu Jan 16 11:01:00 2020 -0800 |
tree | c082a3e8753189e10740661d03e7d70f0c275061 | |
parent | b92b466a463564b014e4c9b86f621bd4eab5fe63 [diff] | |
parent | 67d0cbed9086b596139346b9291f954d7d137279 [diff] |
Merge pull request #277 from colincross/glob_incremental Speed up incremental builds after globs
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.