commit | 7d699c37ecbd6f02d245403464dcd815939a81c5 | [log] [tgz] |
---|---|---|
author | Jaewoong Jung <jungjw@google.com> | Thu Mar 07 14:01:22 2019 -0800 |
committer | Jaewoong Jung <jungjw@google.com> | Thu Mar 07 16:24:56 2019 -0800 |
tree | bc3f1c20a60f8300175b838c545f132840e807ea | |
parent | a9df65135910b587d20fcca22b330d492c20cf05 [diff] |
Panic when copying private properties. When CopyProperties comes across private properties, it silently ignores them. This is error-prone and can result in a bug very hard to debug if the developer is unaware of the behavior. Change-Id: Id6a0752e384ec7fed35728c1e87dbfa95fea84f2
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.