• Home
Name Date Size #Lines LOC

..--

bootstrap/03-May-2024-2,4191,701

bpfmt/03-May-2024-177142

bpmodify/03-May-2024-306249

choosestage/03-May-2024-195121

deptools/03-May-2024-5632

gotestmain/03-May-2024-10776

gotestrunner/03-May-2024-10471

loadplugins/03-May-2024-6844

parser/03-May-2024-2,2641,846

pathtools/03-May-2024-794641

proptools/03-May-2024-2,4141,987

tests/03-May-2024-200129

.gitignoreD03-May-20249 21

.travis.fix-fork.shD03-May-2024213 107

.travis.install-ninja.shD03-May-2024445 2314

.travis.ymlD03-May-2024402 2519

BlueprintsD03-May-20243.2 KiB151137

CONTRIBUTING.mdD03-May-20241.4 KiB2521

LICENSED03-May-202411.1 KiB203169

README.mdD03-May-2024861 1513

blueprint.bashD03-May-20242.2 KiB6219

bootstrap.bashD03-May-20244.8 KiB14680

build.ninja.inD03-May-202417.1 KiB340285

context.goD03-May-202476.2 KiB2,9532,113

context_test.goD03-May-20242.8 KiB13192

context_test_BlueprintsD03-May-2024311 3326

doc.goD03-May-20243.4 KiB691

live_tracker.goD03-May-20244 KiB202147

mangle.goD03-May-2024910 2810

module_ctx.goD03-May-202417.4 KiB553312

ninja_defs.goD03-May-20249.5 KiB384286

ninja_strings.goD03-May-20248.8 KiB366265

ninja_strings_test.goD03-May-20243.9 KiB159137

ninja_writer.goD03-May-20245.3 KiB249180

ninja_writer_test.goD03-May-20242.6 KiB121100

package_ctx.goD03-May-202424.2 KiB873532

scope.goD03-May-20249.3 KiB412312

singleton_ctx.goD03-May-20245.3 KiB204134

splice_modules_test.goD03-May-20244.2 KiB130102

unpack.goD03-May-202410.4 KiB371291

unpack_test.goD03-May-20246.2 KiB402363

README.md

1Blueprint Build System
2======================
3[![Build Status](https://travis-ci.org/google/blueprint.svg?branch=master)](https://travis-ci.org/google/blueprint)
4
5Blueprint is a meta-build system that reads in Blueprints files that describe
6modules that need to be built, and produces a
7[Ninja](http://martine.github.io/ninja/) manifest describing the commands that
8need to be run and their dependencies.  Where most build systems use built-in
9rules or a domain-specific language to describe the logic for converting module
10descriptions to build rules, Blueprint delegates this to per-project build
11logic written in Go.  For large, heterogenous projects this allows the inherent
12complexity of the build logic to be maintained in a high-level language, while
13still allowing simple changes to individual modules by modifying easy to
14understand Blueprints files.
15