| OLD | NEW |
| 1 // Copyright (c) 2013 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2013 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 "base/atomicops.h" | 5 #include "base/atomicops.h" |
| 6 #include "base/bind.h" | 6 #include "base/bind.h" |
| 7 #include "base/command_line.h" | 7 #include "base/command_line.h" |
| 8 #include "base/strings/string_number_conversions.h" | 8 #include "base/strings/string_number_conversions.h" |
| 9 #include "base/strings/stringprintf.h" | 9 #include "base/strings/stringprintf.h" |
| 10 #include "base/timer/elapsed_timer.h" | 10 #include "base/timer/elapsed_timer.h" |
| (...skipping 245 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 256 " \"vs\" - Visual Studio project/solution files.\n" | 256 " \"vs\" - Visual Studio project/solution files.\n" |
| 257 " (default Visual Studio version: 2015)\n" | 257 " (default Visual Studio version: 2015)\n" |
| 258 " \"vs2013\" - Visual Studio 2013 project/solution files.\n" | 258 " \"vs2013\" - Visual Studio 2013 project/solution files.\n" |
| 259 " \"vs2015\" - Visual Studio 2015 project/solution files.\n" | 259 " \"vs2015\" - Visual Studio 2015 project/solution files.\n" |
| 260 " \"xcode\" - Xcode workspace/solution files.\n" | 260 " \"xcode\" - Xcode workspace/solution files.\n" |
| 261 " \"qtcreator\" - QtCreator project files.\n" | 261 " \"qtcreator\" - QtCreator project files.\n" |
| 262 "\n" | 262 "\n" |
| 263 " --filters=<path_prefixes>\n" | 263 " --filters=<path_prefixes>\n" |
| 264 " Semicolon-separated list of label patterns used to limit the set\n" | 264 " Semicolon-separated list of label patterns used to limit the set\n" |
| 265 " of generated projects (see \"gn help label_pattern\"). Only\n" | 265 " of generated projects (see \"gn help label_pattern\"). Only\n" |
| 266 " matching targets will be included to the solution. Only used for\n" | 266 " matching targets and their dependencies will be included in the\n" |
| 267 " Visual Studio and Xcode.\n" | 267 " solution. Only used for Visual Studio and Xcode.\n" |
| 268 "\n" | 268 "\n" |
| 269 "Visual Studio Flags\n" | 269 "Visual Studio Flags\n" |
| 270 "\n" | 270 "\n" |
| 271 " --sln=<file_name>\n" | 271 " --sln=<file_name>\n" |
| 272 " Override default sln file name (\"all\"). Solution file is written\n" | 272 " Override default sln file name (\"all\"). Solution file is written\n" |
| 273 " to the root build directory.\n" | 273 " to the root build directory.\n" |
| 274 "\n" | 274 "\n" |
| 275 "Xcode Flags\n" | 275 "Xcode Flags\n" |
| 276 "\n" | 276 "\n" |
| 277 " --workspace=<file_name>\n" | 277 " --workspace=<file_name>\n" |
| (...skipping 96 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 374 setup->scheduler().input_file_manager()->GetInputFileCount()) + | 374 setup->scheduler().input_file_manager()->GetInputFileCount()) + |
| 375 " files in " + | 375 " files in " + |
| 376 base::Int64ToString(elapsed_time.InMilliseconds()) + "ms\n"; | 376 base::Int64ToString(elapsed_time.InMilliseconds()) + "ms\n"; |
| 377 OutputString(stats); | 377 OutputString(stats); |
| 378 } | 378 } |
| 379 | 379 |
| 380 return 0; | 380 return 0; |
| 381 } | 381 } |
| 382 | 382 |
| 383 } // namespace commands | 383 } // namespace commands |
| OLD | NEW |