Home | History | Annotate | only in /build/blueprint
Up to higher level directory
NameDateSize
.gitignore21-Oct-20169
.travis.fix-fork.sh21-Oct-2016213
.travis.install-ninja.sh21-Oct-2016445
.travis.yml21-Oct-2016402
blueprint.bash21-Oct-20162.2K
Blueprints21-Oct-20163.2K
bootstrap/21-Oct-2016
bootstrap.bash21-Oct-20164.8K
bpfmt/21-Oct-2016
bpmodify/21-Oct-2016
build.ninja.in21-Oct-201617.1K
choosestage/21-Oct-2016
context.go21-Oct-201676.2K
context_test.go21-Oct-20162.8K
context_test_Blueprints21-Oct-2016311
CONTRIBUTING.md21-Oct-20161.4K
deptools/21-Oct-2016
doc.go21-Oct-20163.4K
gotestmain/21-Oct-2016
gotestrunner/21-Oct-2016
LICENSE21-Oct-201611.1K
live_tracker.go21-Oct-20164K
loadplugins/21-Oct-2016
mangle.go21-Oct-2016910
module_ctx.go21-Oct-201617.4K
ninja_defs.go21-Oct-20169.5K
ninja_strings.go21-Oct-20168.8K
ninja_strings_test.go21-Oct-20163.9K
ninja_writer.go21-Oct-20165.3K
ninja_writer_test.go21-Oct-20162.6K
package_ctx.go21-Oct-201624.2K
parser/21-Oct-2016
pathtools/21-Oct-2016
proptools/21-Oct-2016
README.md21-Oct-2016861
scope.go21-Oct-20169.3K
singleton_ctx.go21-Oct-20165.3K
splice_modules_test.go21-Oct-20164.2K
tests/21-Oct-2016
unpack.go21-Oct-201610.4K
unpack_test.go21-Oct-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