Up to higher level directory | |||
Name | Date | Size | |
---|---|---|---|
.gitignore | 24-Aug-2016 | 9 | |
.travis.fix-fork.sh | 24-Aug-2016 | 213 | |
.travis.install-ninja.sh | 24-Aug-2016 | 445 | |
.travis.yml | 24-Aug-2016 | 402 | |
blueprint.bash | 24-Aug-2016 | 2.2K | |
Blueprints | 24-Aug-2016 | 3.2K | |
bootstrap/ | 24-Aug-2016 | ||
bootstrap.bash | 24-Aug-2016 | 4.8K | |
bpfmt/ | 24-Aug-2016 | ||
bpmodify/ | 24-Aug-2016 | ||
build.ninja.in | 24-Aug-2016 | 17.1K | |
choosestage/ | 24-Aug-2016 | ||
context.go | 24-Aug-2016 | 76.2K | |
context_test.go | 24-Aug-2016 | 2.8K | |
context_test_Blueprints | 24-Aug-2016 | 311 | |
CONTRIBUTING.md | 24-Aug-2016 | 1.4K | |
deptools/ | 24-Aug-2016 | ||
doc.go | 24-Aug-2016 | 3.4K | |
gotestmain/ | 24-Aug-2016 | ||
gotestrunner/ | 24-Aug-2016 | ||
LICENSE | 24-Aug-2016 | 11.1K | |
live_tracker.go | 24-Aug-2016 | 4K | |
loadplugins/ | 24-Aug-2016 | ||
mangle.go | 24-Aug-2016 | 910 | |
module_ctx.go | 24-Aug-2016 | 17.4K | |
ninja_defs.go | 24-Aug-2016 | 9.5K | |
ninja_strings.go | 24-Aug-2016 | 8.8K | |
ninja_strings_test.go | 24-Aug-2016 | 3.9K | |
ninja_writer.go | 24-Aug-2016 | 5.3K | |
ninja_writer_test.go | 24-Aug-2016 | 2.6K | |
package_ctx.go | 24-Aug-2016 | 24.2K | |
parser/ | 24-Aug-2016 | ||
pathtools/ | 24-Aug-2016 | ||
proptools/ | 24-Aug-2016 | ||
README.md | 24-Aug-2016 | 861 | |
scope.go | 24-Aug-2016 | 9.3K | |
singleton_ctx.go | 24-Aug-2016 | 5.3K | |
splice_modules_test.go | 24-Aug-2016 | 4.2K | |
tests/ | 24-Aug-2016 | ||
unpack.go | 24-Aug-2016 | 10.4K | |
unpack_test.go | 24-Aug-2016 | 6.2K |
1 Blueprint Build System 2 ====================== 3 [![Build Status](https://travis-ci.org/google/blueprint.svg?branch=master)](https://travis-ci.org/google/blueprint) 4 5 Blueprint is a meta-build system that reads in Blueprints files that describe 6 modules that need to be built, and produces a 7 [Ninja](http://martine.github.io/ninja/) manifest describing the commands that 8 need to be run and their dependencies. Where most build systems use built-in 9 rules or a domain-specific language to describe the logic for converting module 10 descriptions to build rules, Blueprint delegates this to per-project build 11 logic written in Go. For large, heterogenous projects this allows the inherent 12 complexity of the build logic to be maintained in a high-level language, while 13 still allowing simple changes to individual modules by modifying easy to 14 understand Blueprints files. 15