commit | cfa2e91dc44b904fd39d6c57ce4b91b73c8d7180 | [log] [tgz] |
---|---|---|
author | colincross <ccross@android.com> | Mon Dec 14 11:23:23 2020 -0800 |
committer | GitHub <noreply@github.com> | Mon Dec 14 11:23:23 2020 -0800 |
tree | 99a54b3b424fba9087ba6ae729f9a007acdce90f | |
parent | 9ae14f12f9ff8261e416f7563357490ed7063f51 [diff] |
Actually pause mutators when adding dependencies (#335) In the coordination between #316 and #318 the calls to mctx.pause() were forgotten, causing dependencies returned by the Add*Dependency calls to be in an undefined state. Add the missing calls to mctx.pause(). Change-Id: I648ad269449777363801785059b13b866424d4b5
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.