Home | History | Annotate | only in /build/blueprint
Up to higher level directory
NameDateSize
.gitignore06-Dec-20169
.travis.fix-fork.sh06-Dec-2016213
.travis.install-ninja.sh06-Dec-2016445
.travis.yml06-Dec-2016402
blueprint.bash06-Dec-20162.2K
Blueprints06-Dec-20163.2K
bootstrap/06-Dec-2016
bootstrap.bash06-Dec-20164.8K
bpfmt/06-Dec-2016
bpmodify/06-Dec-2016
build.ninja.in06-Dec-201617.1K
choosestage/06-Dec-2016
context.go06-Dec-201676.2K
context_test.go06-Dec-20162.8K
context_test_Blueprints06-Dec-2016311
CONTRIBUTING.md06-Dec-20161.4K
deptools/06-Dec-2016
doc.go06-Dec-20163.4K
gotestmain/06-Dec-2016
gotestrunner/06-Dec-2016
LICENSE06-Dec-201611.1K
live_tracker.go06-Dec-20164K
loadplugins/06-Dec-2016
mangle.go06-Dec-2016910
module_ctx.go06-Dec-201617.4K
ninja_defs.go06-Dec-20169.5K
ninja_strings.go06-Dec-20168.8K
ninja_strings_test.go06-Dec-20163.9K
ninja_writer.go06-Dec-20165.3K
ninja_writer_test.go06-Dec-20162.6K
package_ctx.go06-Dec-201624.2K
parser/06-Dec-2016
pathtools/06-Dec-2016
proptools/06-Dec-2016
README.md06-Dec-2016861
scope.go06-Dec-20169.3K
singleton_ctx.go06-Dec-20165.3K
splice_modules_test.go06-Dec-20164.2K
tests/06-Dec-2016
unpack.go06-Dec-201610.4K
unpack_test.go06-Dec-20166.2K

README.md

      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