summaryrefslogtreecommitdiffstats
Commit message (Collapse)AuthorAgeFilesLines
* wrap some overlong linesEvan Martin2012-12-2913-28/+56
|
* fix all "class" -> "struct"Evan Martin2012-12-295-11/+9
|
* add a TODO from a pull requestEvan Martin2012-12-291-0/+1
|
* Merge pull request #455 from azuk/masterEvan Martin2012-12-291-5/+8
|\ | | | | Make a native Windows build possible when using Cygwin Python.
| * Add --windows option to bootstrap.pyHannu Koivisto2012-11-091-5/+8
| | | | | | | | Makes it possible to make a native Windows build when using Cygwin Python.
* | Merge pull request #467 from ppuryear/browse-errorEvan Martin2012-12-291-5/+6
|\ \ | | | | | | browse: Read ninja's error text from stderr.
| * | browse: Read ninja's error text from stderr.Philip Puryear2012-12-081-5/+6
| | |
* | | ninja_syntax.py: don't add trailing space when build has no inputsEvan Martin2012-12-291-3/+2
| | | | | | | | | | | | Seen in Ninja's configure.py where it creates an "rpmbuild" command.
* | | fix test build under clang/system gtestEvan Martin2012-12-291-4/+8
| | | | | | | | | | | | | | | | | | Tests always need GTEST_HAS_RTTI=0 set, but the code was only setting it in the --with-gtest branch. Instead always use the test-specific cflags when compiling test code.
* | | wrap test in anon namespaceEvan Martin2012-12-281-0/+4
| | |
* | | correctly open /dev/null in subprocessesEvan Martin2012-12-212-1/+16
| | | | | | | | | | | | Fixes issue #468.
* | | update a commentEvan Martin2012-12-211-6/+3
| | |
* | | Merge pull request #474 from yannicklm/masterEvan Martin2012-12-212-0/+9
|\ \ \ | | | | | | | | NINJA_STATUS: add support of `%p` for percentage
| * | | NINJA_STATUS: add support of `%p` for percentageyannicklm2012-12-142-0/+9
| | | |
* | | | Merge pull request #475 from nico/vimEvan Martin2012-12-211-2/+2
|\ \ \ \ | |/ / / |/| | | Update version number in ninja.vim after recent changes.
| * | | Update version number in ninja.vim after recent changes.Nico Weber2012-12-151-2/+2
|/ / /
* | | Merge pull request #471 from riannucci/fix_vim_syntaxEvan Martin2012-12-141-1/+7
|\ \ \ | | | | | | | | Fix vim syntax
| * | | Add missing rspfile and rspfile_contentRobert Iannucci2012-12-141-1/+1
| | | |
| * | | Add ninja.vim syntax for poolRobert Iannucci2012-12-141-1/+7
| | | |
* | | | Merge pull request #472 from riannucci/add_python_pool_syntaxEvan Martin2012-12-141-1/+8
|\ \ \ \ | | | | | | | | | | Add python ninja_syntax.py support for pool
| * | | | Add python ninja_syntax.py support for poolRobert Iannucci2012-12-141-1/+8
| |/ / /
* | | | Merge pull request #473 from riannucci/fix_emacsEvan Martin2012-12-141-1/+2
|\ \ \ \ | |/ / / |/| | | Fix emacs ninja-mode
| * | | Add missing default keywordRobert Iannucci2012-12-141-1/+1
| | | |
| * | | Add poolRobert Iannucci2012-12-141-1/+2
|/ / /
* | | Merge pull request #461 from riannucci/global_sectionEvan Martin2012-12-1316-202/+634
|\ \ \ | |/ / |/| | Resource pools for ninja
| * | Remove unnecessary parameter from ShouldDelayEdgeRobert Iannucci2012-11-302-2/+2
| | |
| * | Rename isValidRobert Iannucci2012-11-301-1/+1
| | |
| * | Fix formattingRobert Iannucci2012-11-304-13/+13
| | |
| * | Improve comments for src/state.hRobert Iannucci2012-11-301-3/+12
| | |
| * | Doc improvementsRobert Iannucci2012-11-301-0/+8
| | |
| * | Make Edge->pool() a pointer like it should have beenRobert Iannucci2012-11-302-8/+8
| | |
| * | Improve the manual documentationRobert Iannucci2012-11-301-10/+12
| | |
| * | Revert "Dump state for debugging"Robert Iannucci2012-11-101-4/+0
| | | | | | | | | | | | This reverts commit 9b196dc806e57cefd88bbbacd12286447dbf9ad9.
| * | Uninitialized variable! There is always one...Robert Iannucci2012-11-101-1/+1
| | |
| * | Dump state for debuggingRobert Iannucci2012-11-101-0/+4
| | |
| * | Make edge dump pool name, and skip default poolRobert Iannucci2012-11-102-1/+10
| | |
| * | cover the nulled pool caseRobert Iannucci2012-11-101-19/+20
| | |
| * | add docsRobert Iannucci2012-11-101-0/+51
| | |
| * | Add some tests!Robert Iannucci2012-11-101-3/+129
| | |
| * | begin rationalizing platform for both parsersRobert Iannucci2012-11-101-7/+5
| | |
| * | block parse method doneRobert Iannucci2012-11-106-185/+277
| | |
| * | all building and tests passingRobert Iannucci2012-11-092-2/+2
| | |
| * | Dump pools with StateRobert Iannucci2012-11-093-6/+26
| | |
| * | Fix a bug... now chrome build works O_ORobert Iannucci2012-11-091-1/+1
| | |
| * | and some basic implementationRobert Iannucci2012-11-094-15/+46
| | |
| * | stub out an api and de-constify PoolRobert Iannucci2012-11-096-17/+63
| | |
| * | Const ref FTWRobert Iannucci2012-11-091-1/+1
| | |
| * | Pull graph.cc tooRobert Iannucci2012-11-091-1/+2
| | |
| * | Pull out base changes to stateRobert Iannucci2012-11-092-2/+40
| |/
* | Merge pull request #464 from tfarina/clang-warningEvan Martin2012-11-271-1/+1
|\ \ | | | | | | Fix clang warning.