Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(772)

Side by Side Diff: tools/gn/command_gen.cc

Issue 2060613002: Generate VS projects also for target dependencies. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: update docs for --filters, older GN changes Created 4 years, 6 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
« no previous file with comments | « no previous file | tools/gn/docs/reference.md » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
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
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
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
OLDNEW
« no previous file with comments | « no previous file | tools/gn/docs/reference.md » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698