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

Side by Side Diff: tools/gn/switches.h

Issue 1978693002: GN: Allow setting the path to Python (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Rebase Created 4 years, 7 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 | « tools/gn/setup.cc ('k') | tools/gn/switches.cc » ('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 2014 The Chromium Authors. All rights reserved. 1 // Copyright 2014 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 #ifndef TOOLS_GN_SWITCHES_H_ 5 #ifndef TOOLS_GN_SWITCHES_H_
6 #define TOOLS_GN_SWITCHES_H_ 6 #define TOOLS_GN_SWITCHES_H_
7 7
8 #include <map> 8 #include <map>
9 9
10 #include "base/strings/string_piece.h" 10 #include "base/strings/string_piece.h"
(...skipping 34 matching lines...) Expand 10 before | Expand all | Expand 10 after
45 extern const char kFailOnUnusedArgs_Help[]; 45 extern const char kFailOnUnusedArgs_Help[];
46 46
47 extern const char kMarkdown[]; 47 extern const char kMarkdown[];
48 extern const char kMarkdown_HelpShort[]; 48 extern const char kMarkdown_HelpShort[];
49 extern const char kMarkdown_Help[]; 49 extern const char kMarkdown_Help[];
50 50
51 extern const char kNoColor[]; 51 extern const char kNoColor[];
52 extern const char kNoColor_HelpShort[]; 52 extern const char kNoColor_HelpShort[];
53 extern const char kNoColor_Help[]; 53 extern const char kNoColor_Help[];
54 54
55 extern const char kScriptExecutable[];
56 extern const char kScriptExecutable_HelpShort[];
57 extern const char kScriptExecutable_Help[];
58
55 extern const char kQuiet[]; 59 extern const char kQuiet[];
56 extern const char kQuiet_HelpShort[]; 60 extern const char kQuiet_HelpShort[];
57 extern const char kQuiet_Help[]; 61 extern const char kQuiet_Help[];
58 62
59 extern const char kRoot[]; 63 extern const char kRoot[];
60 extern const char kRoot_HelpShort[]; 64 extern const char kRoot_HelpShort[];
61 extern const char kRoot_Help[]; 65 extern const char kRoot_Help[];
62 66
63 extern const char kRuntimeDepsListFile[]; 67 extern const char kRuntimeDepsListFile[];
64 extern const char kRuntimeDepsListFile_HelpShort[]; 68 extern const char kRuntimeDepsListFile_HelpShort[];
(...skipping 29 matching lines...) Expand all
94 " This switch will turn on matching all toolchains.\n" \ 98 " This switch will turn on matching all toolchains.\n" \
95 "\n" \ 99 "\n" \
96 " For example, a file is in a target might be compiled twice:\n" \ 100 " For example, a file is in a target might be compiled twice:\n" \
97 " once in the default toolchain and once in a secondary one. Without\n" \ 101 " once in the default toolchain and once in a secondary one. Without\n" \
98 " this flag, only the default toolchain one will be matched by\n" \ 102 " this flag, only the default toolchain one will be matched by\n" \
99 " wildcards. With this flag, both will be matched.\n" 103 " wildcards. With this flag, both will be matched.\n"
100 104
101 } // namespace switches 105 } // namespace switches
102 106
103 #endif // TOOLS_GN_SWITCHES_H_ 107 #endif // TOOLS_GN_SWITCHES_H_
OLDNEW
« no previous file with comments | « tools/gn/setup.cc ('k') | tools/gn/switches.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698