Lines Matching full:ninja
17 """Script that generates the build.ninja for ninja itself.
19 Projects that use ninja themselves should either write a similar script
20 or use a meta-build system that supports Ninja output."""
123 Used to bootstrap Ninja from scratch. In --bootstrap mode this
145 # In bootstrap mode, we have no ninja process to catch /showIncludes
160 # Implement just enough of Ninja variable expansion etc. to
203 help='bootstrap a ninja binary from nothing')
237 BUILD_FILENAME = 'build.ninja'
249 print('bootstrapping ninja...')
252 n.comment('This file is used to build ninja itself.')
473 n.comment('the depfile parser and ninja lexers are generated using re2c.')
492 n.comment('Core source files all build into ninja library.')
495 cxxvariables = [('pdb', 'ninja.pdb')]
537 ninja_lib = n.build(built('ninja.lib'), 'ar', objs)
543 libs.append('ninja.lib')
553 objs = cxx('ninja', variables=cxxvariables)
554 ninja = n.build(binary('ninja'), 'link', objs, implicit=ninja_lib, variable
557 all_targets += ninja
560 # We've built the ninja binary. Don't run any more commands
562 # build.ninja file.
626 command='./ninja -t graph all > $out')
629 dot = n.build(built('graph.dot'), 'gendot', ['ninja', 'build.ninja'])
675 n.build('build.ninja', 'configure',
680 n.default(ninja)
702 rebuild_args.append('./ninja')
705 bootstrap_exe = 'ninja.bootstrap.exe'
706 final_exe = 'ninja.exe'
708 bootstrap_exe = './ninja.bootstrap'
709 final_exe = './ninja'