| Index: tools/gn/target.cc
|
| diff --git a/tools/gn/target.cc b/tools/gn/target.cc
|
| index 2ea285943248ffdef6ddabf0044738351d791d5b..0b189e63b4850690187cab57ce3458a5e34e7537 100644
|
| --- a/tools/gn/target.cc
|
| +++ b/tools/gn/target.cc
|
| @@ -217,7 +217,7 @@ std::string Target::GetComputedOutputName(bool include_prefix) const {
|
| const Tool* tool = toolchain_->GetToolForTargetFinalOutput(this);
|
| const std::string& prefix = tool->output_prefix();
|
| // Only add the prefix if the name doesn't already have it.
|
| - if (!StartsWithASCII(name, prefix, true))
|
| + if (!base::StartsWithASCII(name, prefix, true))
|
| result = prefix;
|
| }
|
|
|
|
|