summaryrefslogtreecommitdiffstats
path: root/tools/gn/ninja_target_writer.cc
diff options
context:
space:
mode:
Diffstat (limited to 'tools/gn/ninja_target_writer.cc')
-rw-r--r--tools/gn/ninja_target_writer.cc3
1 files changed, 1 insertions, 2 deletions
diff --git a/tools/gn/ninja_target_writer.cc b/tools/gn/ninja_target_writer.cc
index 7913735..e03b2d2 100644
--- a/tools/gn/ninja_target_writer.cc
+++ b/tools/gn/ninja_target_writer.cc
@@ -242,8 +242,7 @@ 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",
- base::CompareCase::INSENSITIVE_ASCII))
+ CHECK(base::EndsWith(stamp_file.value(), ".stamp", false))
<< "Output should end in \".stamp\" for stamp file output. Instead got: "
<< "\"" << stamp_file.value() << "\"";