• Home
Name Date Size #Lines LOC

..--

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

bpfmt/07-May-2024-177142

bpmodify/07-May-2024-306249

choosestage/07-May-2024-195121

deptools/07-May-2024-5632

gotestmain/07-May-2024-10776

gotestrunner/07-May-2024-10471

loadplugins/07-May-2024-6844

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

pathtools/07-May-2024-794641

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

tests/07-May-2024-200129

.gitignoreD07-May-20249 21

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

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

.travis.ymlD07-May-2024402 2519

BlueprintsD07-May-20243.2 KiB151137

CONTRIBUTING.mdD07-May-20241.4 KiB2521

LICENSED07-May-202411.1 KiB203169

README.mdD07-May-2024861 1513

blueprint.bashD07-May-20242.2 KiB6219

bootstrap.bashD07-May-20244.8 KiB14680

build.ninja.inD07-May-202417.1 KiB340285

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

context_test.goD07-May-20242.8 KiB13192

context_test_BlueprintsD07-May-2024311 3326

doc.goD07-May-20243.4 KiB691

live_tracker.goD07-May-20244 KiB202147

mangle.goD07-May-2024910 2810

module_ctx.goD07-May-202417.4 KiB553312

ninja_defs.goD07-May-20249.5 KiB384286

ninja_strings.goD07-May-20248.8 KiB366265

ninja_strings_test.goD07-May-20243.9 KiB159137

ninja_writer.goD07-May-20245.3 KiB249180

ninja_writer_test.goD07-May-20242.6 KiB121100

package_ctx.goD07-May-202424.2 KiB873532

scope.goD07-May-20249.3 KiB412312

singleton_ctx.goD07-May-20245.3 KiB204134

splice_modules_test.goD07-May-20244.2 KiB130102

unpack.goD07-May-202410.4 KiB371291

unpack_test.goD07-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