commit | 6c6c10361214f0bfe58578aa1de0207e255c8011 | [log] [tgz] |
---|---|---|
author | Dan Willemsen <dwillemsen@google.com> | Sun Apr 19 12:50:48 2020 -0700 |
committer | Dan Willemsen <dwillemsen@google.com> | Sun Apr 19 12:50:48 2020 -0700 |
tree | f814bd71c3ad87c833982781307be5b1353f243d | |
parent | 6957a46d38c98c6008f6f667281d219d7d6949dc [diff] |
Actually write an empty ninja file with --empty-ninja-file Otherwise we'll re-run the primary builder every time this is used. This triggered my new ninja checks that verify that all commands write their outputs. Change-Id: Ic92d1ea57203b953da8025a170b24e6420c5436c
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.