Home | History | Annotate | only in /build/blueprint
Up to higher level directory
NameDateSize
.travis.fix-fork.sh22-Oct-2020213
.travis.gofmt.sh22-Oct-2020111
.travis.install-ninja.sh22-Oct-2020445
.travis.yml22-Oct-2020459
blueprint.bash22-Oct-20201.7K
blueprint_impl.bash22-Oct-20201.5K
Blueprints22-Oct-20204.5K
bootstrap/22-Oct-2020
bootstrap.bash22-Oct-20204.6K
bpfmt/22-Oct-2020
bpmodify/22-Oct-2020
context.go22-Oct-202094K
context_test.go22-Oct-202011.4K
CONTRIBUTING.md22-Oct-20201.4K
deptools/22-Oct-2020
doc.go22-Oct-20203.4K
glob.go22-Oct-20203.2K
glob_test.go22-Oct-20201.7K
go.mod22-Oct-202035
gotestmain/22-Oct-2020
gotestrunner/22-Oct-2020
LICENSE22-Oct-202011.1K
live_tracker.go22-Oct-20204.2K
loadplugins/22-Oct-2020
mangle.go22-Oct-2020910
microfactory/22-Oct-2020
module_ctx.go22-Oct-202027.8K
name_interface.go22-Oct-20206K
ninja_defs.go22-Oct-202011.7K
ninja_strings.go22-Oct-20209.3K
ninja_strings_test.go22-Oct-20203.9K
ninja_writer.go22-Oct-20205.7K
ninja_writer_test.go22-Oct-20202.8K
OWNERS22-Oct-202079
package_ctx.go22-Oct-202024.4K
parser/22-Oct-2020
pathtools/22-Oct-2020
proptools/22-Oct-2020
README.md22-Oct-2020854
scope.go22-Oct-20209.3K
singleton_ctx.go22-Oct-20207.4K
splice_modules_test.go22-Oct-20204.5K
tests/22-Oct-2020
unpack.go22-Oct-202011.2K
unpack_test.go22-Oct-20209.9K
visit_test.go22-Oct-20204.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](https://ninja-build.org/) 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