| OLD | NEW |
| 1 // Copyright 2015 The Chromium Authors. All rights reserved. | 1 // Copyright 2015 The Chromium Authors. All rights reserved. |
| 2 // Use of this source code is governed by a BSD-style license that can be | 2 // Use of this source code is governed by a BSD-style license that can be |
| 3 // found in the LICENSE file. | 3 // found in the LICENSE file. |
| 4 | 4 |
| 5 #include <stddef.h> |
| 6 |
| 5 #include <algorithm> | 7 #include <algorithm> |
| 6 | 8 |
| 7 #include "base/command_line.h" | 9 #include "base/command_line.h" |
| 8 #include "base/containers/hash_tables.h" | 10 #include "base/containers/hash_tables.h" |
| 9 #include "base/strings/stringprintf.h" | 11 #include "base/strings/stringprintf.h" |
| 10 #include "tools/gn/commands.h" | 12 #include "tools/gn/commands.h" |
| 11 #include "tools/gn/setup.h" | 13 #include "tools/gn/setup.h" |
| 12 #include "tools/gn/standard_out.h" | 14 #include "tools/gn/standard_out.h" |
| 13 | 15 |
| 14 namespace commands { | 16 namespace commands { |
| (...skipping 294 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 309 OutputString(base::StringPrintf(" %d of them are public.\n", | 311 OutputString(base::StringPrintf(" %d of them are public.\n", |
| 310 static_cast<int>(state.found_public.size()))); | 312 static_cast<int>(state.found_public.size()))); |
| 311 } | 313 } |
| 312 OutputString("Use --all to print all paths.\n"); | 314 OutputString("Use --all to print all paths.\n"); |
| 313 } | 315 } |
| 314 } | 316 } |
| 315 return 0; | 317 return 0; |
| 316 } | 318 } |
| 317 | 319 |
| 318 } // namespace commands | 320 } // namespace commands |
| OLD | NEW |