summaryrefslogtreecommitdiffstats
path: root/src/depfile_parser.cc
Commit message (Expand)AuthorAgeFilesLines
* Add 'using namespace std;' to all cc files to prepare for removing it from he...Michael Jones2020-09-301-0/+2
* bugfix: Process escaped colon in GCC depfiles. (#1774)zero91782020-05-201-24/+63
* depfile_parser_test: test buggy -MP behaviorBen Boeckel2019-11-201-1/+11
* depfile_parser: remove restriction on multiple outputsBen Boeckel2019-11-201-31/+12
* Follow GCC/Clang behavior wrt depfilesPeter Wu2019-06-081-29/+98
* Restore depfile toleration of multiple output paths on distinct linesBrad King2018-11-191-2/+28
* Fix depfile parser handling of multiple rulesBrad King2018-11-191-30/+74
* Re-arrange depfile parser token processing logicBrad King2018-11-191-11/+10
* Re-generate depfile parser with re2cc 1.0.1Brad King2018-11-191-3/+2
* Fix parsing some special chars in depfilesMaciej Pawlowski2018-11-071-2/+2
* Regenerate depfile_parser.cc and lexer.cc with newer re2cMaciej Pawlowski2018-11-071-85/+45
* Merge pull request #763 from drbo/masterNico Weber2015-11-121-27/+31
|\
| * Added test of international character supportDemetri Obenour2014-05-081-27/+31
* | Reject depfiles that don't contain a : after the target name.Nico Weber2015-03-121-0/+4
|/
* Allow paths with '{' '}' in depfilesMaxim Kalaev2014-05-071-3/+4
* Accept \r\n line endings in depfiles.Nico Weber2014-05-011-6/+7
* Fix additional range in character class.Nico Weber2013-12-131-29/+42
* Dollar signs in depfiles are escaped as "$$", not "\$".Nico Weber2013-04-021-30/+47
* allow paths with '!' in depfilesEvan Martin2013-03-301-28/+16
* windows: fix size_t<->int conversions in ninja.exeEvan Martin2012-08-101-2/+2
* Revert "Make StringPiece data members private."Nico Weber2012-07-281-1/+1
* Merge pull request #352 from tfarina/string-piece-privateEvan Martin2012-07-271-1/+1
|\
| * Make StringPiece data members private.Thiago Farina2012-06-301-1/+1
* | dep file parsing: allow '@' and '=' in pathsMaxim Kalaev2012-07-191-14/+22
|/
* allow '(' and ')' in depfile pathsEvan Martin2012-06-121-6/+10
* Depfile parser accept tilde.Nicolas Despres2012-03-141-9/+7
* Issue #241 - handle depfiles generated by older versions of GCCOleksandr Usov2012-03-121-4/+12
* minor re2c cleanupsEvan Martin2011-12-291-2/+3
* handle nuls more carefully in re2c rulesEvan Martin2011-12-291-22/+29
* de-escape backslashes in depfiles while parsingEvan Martin2011-12-281-80/+113
* switch DepfileParser to take a string* to make memory clearerEvan Martin2011-12-271-4/+4
* fix depfile regex to not match empty stringsEvan Martin2011-12-271-12/+11
* handle backslashes and isolated colons in depfile parserEvan Martin2011-12-191-33/+27
* remove makefile parsing code, use depfile code insteadEvan Martin2011-12-071-10/+22
* use re2c to parse depfilesEvan Martin2011-12-071-0/+150