• Home
Name Date Size #Lines LOC

..--

bootstrap/03-May-2024-2,5261,768

bpfmt/03-May-2024-177142

bpmodify/03-May-2024-308250

deptools/03-May-2024-5632

gotestmain/03-May-2024-208146

gotestrunner/03-May-2024-11377

loadplugins/03-May-2024-6844

parser/03-May-2024-2,6952,185

pathtools/03-May-2024-1,106865

proptools/03-May-2024-3,0452,455

tests/03-May-2024-495400

.gitignoreD03-May-202418 32

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

.travis.gofmt.shD03-May-2024111 85

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

.travis.ymlD03-May-2024473 2822

BlueprintsD03-May-20243.9 KiB176161

CONTRIBUTING.mdD03-May-20241.4 KiB2521

LICENSED03-May-202411.1 KiB203169

OWNERSD03-May-202441 32

README.mdD03-May-2024854 1513

blueprint.bashD03-May-20242.2 KiB6723

bootstrap.bashD03-May-20244.8 KiB14680

build.ninja.inD03-May-202417.4 KiB338287

context.goD03-May-202483.4 KiB3,2392,321

context_test.goD03-May-20244.2 KiB204155

doc.goD03-May-20243.4 KiB691

glob.goD03-May-20242.7 KiB11579

live_tracker.goD03-May-20244.1 KiB209153

mangle.goD03-May-2024910 2810

module_ctx.goD03-May-202423.6 KiB752452

ninja_defs.goD03-May-202411.2 KiB437332

ninja_strings.goD03-May-20249.1 KiB378276

ninja_strings_test.goD03-May-20243.9 KiB164142

ninja_writer.goD03-May-20245.5 KiB257186

ninja_writer_test.goD03-May-20242.6 KiB121100

package_ctx.goD03-May-202424.5 KiB883538

regen_build_ninja_in.shD03-May-2024497 3324

scope.goD03-May-20249.3 KiB412312

singleton_ctx.goD03-May-20246.7 KiB249162

splice_modules_test.goD03-May-20244.5 KiB145117

unpack.goD03-May-202411.2 KiB390298

unpack_test.goD03-May-20249 KiB573523

visit_test.goD03-May-20243.8 KiB156112

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](https://ninja-build.org/) 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