Home | History | Annotate | only in /build/blueprint
Up to higher level directory
NameDateSize
.gitignore24-Aug-20169
.travis.fix-fork.sh24-Aug-2016213
.travis.install-ninja.sh24-Aug-2016445
.travis.yml24-Aug-2016402
blueprint.bash24-Aug-20162.2K
Blueprints24-Aug-20163.2K
bootstrap/24-Aug-2016
bootstrap.bash24-Aug-20164.8K
bpfmt/24-Aug-2016
bpmodify/24-Aug-2016
build.ninja.in24-Aug-201617.1K
choosestage/24-Aug-2016
context.go24-Aug-201676.2K
context_test.go24-Aug-20162.8K
context_test_Blueprints24-Aug-2016311
CONTRIBUTING.md24-Aug-20161.4K
deptools/24-Aug-2016
doc.go24-Aug-20163.4K
gotestmain/24-Aug-2016
gotestrunner/24-Aug-2016
LICENSE24-Aug-201611.1K
live_tracker.go24-Aug-20164K
loadplugins/24-Aug-2016
mangle.go24-Aug-2016910
module_ctx.go24-Aug-201617.4K
ninja_defs.go24-Aug-20169.5K
ninja_strings.go24-Aug-20168.8K
ninja_strings_test.go24-Aug-20163.9K
ninja_writer.go24-Aug-20165.3K
ninja_writer_test.go24-Aug-20162.6K
package_ctx.go24-Aug-201624.2K
parser/24-Aug-2016
pathtools/24-Aug-2016
proptools/24-Aug-2016
README.md24-Aug-2016861
scope.go24-Aug-20169.3K
singleton_ctx.go24-Aug-20165.3K
splice_modules_test.go24-Aug-20164.2K
tests/24-Aug-2016
unpack.go24-Aug-201610.4K
unpack_test.go24-Aug-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