summaryrefslogtreecommitdiffstats
path: root/src
Commit message (Collapse)AuthorAgeFilesLines
* SEMANTIC CHANGE: implicit inputs are now required to existEvan Martin2011-05-134-10/+38
| | | | | | Edges found through depfiles are special: they get an extra empty "phony" rule. (This is identical to the way you hack this with Makefiles.)
* tweak browse appearanceEvan Martin2011-05-131-10/+17
|
* make browse work for all ninja pathsEvan Martin2011-05-134-9/+14
| | | | | | | Pass the path to the ninja binary in to the Python script. Confusingly, in some places the variables were already in place to do this, but they were accidentally used for something else entirely.
* refix recompactionEvan Martin2011-05-121-1/+1
| | | | | Like all untested quick fixes, my previous quick fix actually introduced a reliable segfault.
* quick fix: write out signature in recompactionEvan Martin2011-05-111-0/+5
| | | | | This needs refactoring but I already pushed the bad code so this hopefully makes it less broken.
* don't crash on truncated log filesEvan Martin2011-05-112-3/+35
| | | | | Add a test that tries all truncations of a log file and verifies it doesn't crash.
* add a versioning header to build log, switch to v2Evan Martin2011-05-114-27/+83
| | | | | In v2 we store both the start and end time of the command. This allows better visualization of the build process.
* fix testEvan Martin2011-05-091-1/+1
|
* expose -k flag to usersEvan Martin2011-05-092-2/+12
|
* add support for ignoring failures of some subtasksEvan Martin2011-05-093-10/+57
|
* windows: remove extra printEvan Martin2011-05-081-1/+0
|
* windows: fix more signedness warningsEvan Martin2011-05-083-36/+36
|
* windows: pass subprocess testsEvan Martin2011-05-082-30/+55
|
* windows: pass the DiskInterface testsEvan Martin2011-05-081-21/+58
|
* windows: successfully link testsEvan Martin2011-05-064-27/+59
| | | | | It links, with some hacks. Tests still fail.
* fix tests broken by previous commitEvan Martin2011-05-061-6/+6
|
* windows: subprocess implementation for WindowsEvan Martin2011-05-064-6/+243
| | | | Heavily based on a patch from Sergey Nenakhov <nenakhov.sergey@gmail.com>.
* more refactoring for windowsEvan Martin2011-05-062-27/+16
|
* Needed more path components to build Chrome. One path component in an uncommonScott Byer2011-05-031-1/+1
| | | | sub-library ended up with 27 slashes in it.
* refactor subprocess to make it easier for windows portEvan Martin2011-05-034-75/+62
| | | | | | Rather than tracking stdout/stderr explicitly, just keep an opaque pointer to a platform-specific 'stream' type. Also provide API to get at the process output.
* fix unit testEvan Martin2011-05-022-2/+2
|
* Merge pull request #36 from polrop/test-clean-tool.Evan Martin2011-05-029-51/+399
|\ | | | | Test clean tool
| * The cleaner can be used multiple times now.Nicolas Despres2011-05-021-90/+48
| |
| * Return non-zero status when errors occur.Nicolas Despres2011-05-029-40/+78
| | | | | | | | | | | | Clean all was not returning non-zero when an error occur (like when failing to remove a directory). This patch fix the problem and add a test for it.
| * Add a test for the clean tool.Nicolas Despres2011-05-028-34/+386
| | | | | | | | It also fix a bug about the count of removed file reported.
* | Add a Warning() report function.Nicolas Despres2011-05-023-2/+14
|/ | | | Also fix sites where Error() was misused.
* windows: use abstractions in ninja.ccEvan Martin2011-05-021-6/+13
|
* windows: getopt const clean hackEvan Martin2011-05-021-3/+3
|
* windows: use millis abstraction instead of non-portable gettimeofdayEvan Martin2011-05-021-14/+28
|
* remove ROOT_HACK hack; it is unusedEvan Martin2011-05-021-9/+0
|
* windows: abstract around mkdir vs _mkdirEvan Martin2011-05-023-1/+19
|
* windows: use portable replacement of setlinebuf()Evan Martin2011-05-021-1/+1
|
* use refactored function to support implicit "all" targetEvan Martin2011-05-013-16/+20
|
* canonicalize paths in refactored functionEvan Martin2011-05-011-2/+5
|
* refactor out adding "all" to graph toolEvan Martin2011-05-011-21/+31
|
* add test for RootNodes(); fix commentEvan Martin2011-05-013-12/+28
|
* drop reserved words 'build'/'rule'/'subninja'/etc.Evan Martin2011-05-013-50/+52
| | | | | | | Instead, parse them as normal words, which makes them work as paths. We instead rely on the *position* (i.e., we start a statement with a keyword and not a path) to distinguish the keyword 'build' from the file 'build'.
* fix warnings on Mac 10.5Arnaud Gelas2011-04-303-0/+6
| | | | structures had virtual functions but not virtual destructors
* fix compilation error on Mac 10.5Arnaud Gelas2011-04-301-1/+1
| | | | std::vector<>::data() does not exist
* fix SEGV in graph_testHiroyuki Iwatsuki2011-04-291-5/+5
|
* add doxygen-compatibile comments to most classesEvan Martin2011-04-2916-63/+116
|
* fix a signedness warningEvan Martin2011-04-291-1/+1
|
* Merged pull request #31 from polrop/generate-whole-graph.Evan Martin2011-04-291-6/+20
|\ | | | | The 'graph' tool now generates a graph based on all root nodes when called without any target. The build.ninja file is also adjusted so that we get the whole graph generated (including the doxygen part).
| * graph: Assume all root nodes if no target given.Nicolas Despres2011-04-261-6/+20
| | | | | | | | This way we can generate the complete graph.
* | Merged pull request #30 from polrop/more-tools.Evan Martin2011-04-295-2/+447
|\ \ | |/ | | adds the -C option and the following tools: targets, rules and clean
| * Add the 'clean' tool.Nicolas Despres2011-04-263-1/+295
| | | | | | | | It removes built files either by rule or target or everything.
| * Add the 'rules' tool.Nicolas Despres2011-04-261-1/+18
| | | | | | | | | | It can be useful in conjunction with the 'targets' tool for writing shell completion scripts and when debugging.
| * Add the 'targets' tool.Nicolas Despres2011-04-263-1/+124
| | | | | | | | | | | | | | | | | | | | | | This tool list targets by depth or by rule. It can be useful: - for shell completion script ; - to know what are the primary targets: ninja -t targets depth 1 ; - to know targets that are linked: ninja -t rule link ; - when debugging. It works by first listing the root nodes and then following the input nodes of their in edge.
| * Add -C DIR option.Nicolas Despres2011-04-261-1/+12
| | | | | | | | | | | | Can be useful when calling ninja from a script or a code editor or in many other occasions. It costs nothing and does not bring more complexity, so I think we can afford it.
* | Merged pull request #29 from polrop/minor-bug-fix.Evan Martin2011-04-286-24/+34
|\ \ | |/ | | Minor bug fix