commit | 53e92a0de6c2528401cbf5cf3b1be9958fbe99e9 | [log] [tgz] |
---|---|---|
author | Jooyung Han <jooyung.han@gmail.com> | Tue Dec 15 04:30:48 2020 +0900 |
committer | GitHub <noreply@github.com> | Mon Dec 14 11:30:48 2020 -0800 |
tree | 4e7161350517f98f0583c102e0a230d45a5a2f07 | |
parent | cfa2e91dc44b904fd39d6c57ce4b91b73c8d7180 [diff] |
bpmodify: support numerical sort (#332) bpmodify sorts touched list respecting numbers embedded in strings. For example, "foo-2" comes before "foo-10". Test: bpmodify_test.go Change-Id: If2fe9bc871a463a47dd3c0b52982b34c9fde05f0 Co-authored-by: Jooyung Han <jooyung@google.com>
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.