diff options
Diffstat (limited to 'tools/gn/ninja_target_writer.cc')
-rw-r--r-- | tools/gn/ninja_target_writer.cc | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/tools/gn/ninja_target_writer.cc b/tools/gn/ninja_target_writer.cc index e03b2d2..7913735 100644 --- a/tools/gn/ninja_target_writer.cc +++ b/tools/gn/ninja_target_writer.cc @@ -242,7 +242,8 @@ void NinjaTargetWriter::WriteStampForTarget( // First validate that the target's dependency is a stamp file. Otherwise, // we shouldn't have gotten here! - CHECK(base::EndsWith(stamp_file.value(), ".stamp", false)) + CHECK(base::EndsWith(stamp_file.value(), ".stamp", + base::CompareCase::INSENSITIVE_ASCII)) << "Output should end in \".stamp\" for stamp file output. Instead got: " << "\"" << stamp_file.value() << "\""; |