1 // Copyright 2015 Google Inc. All rights reserved
2 //
3 // Licensed under the Apache License, Version 2.0 (the "License");
4 // you may not use this file except in compliance with the License.
5 // You may obtain a copy of the License at
6 //
7 //      http://www.apache.org/licenses/LICENSE-2.0
8 //
9 // Unless required by applicable law or agreed to in writing, software
10 // distributed under the License is distributed on an "AS IS" BASIS,
11 // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
12 // See the License for the specific language governing permissions and
13 // limitations under the License.
14 
15 #ifndef FLAGS_H_
16 #define FLAGS_H_
17 
18 #include <string>
19 #include <vector>
20 
21 #include "string_piece.h"
22 #include "symtab.h"
23 
24 using namespace std;
25 
26 struct Flags {
27   bool detect_android_echo;
28   bool detect_depfiles;
29   bool dump_kati_stamp;
30   bool enable_debug;
31   bool enable_kati_warnings;
32   bool enable_stat_logs;
33   bool gen_all_targets;
34   bool generate_ninja;
35   bool is_dry_run;
36   bool is_silent_mode;
37   bool is_syntax_check_only;
38   bool regen;
39   bool regen_debug;
40   bool regen_ignoring_kati_binary;
41   bool use_find_emulator;
42   bool color_warnings;
43   bool werror_find_emulator;
44   bool werror_overriding_commands;
45   const char* goma_dir;
46   const char* ignore_dirty_pattern;
47   const char* no_ignore_dirty_pattern;
48   const char* ignore_optional_include_pattern;
49   const char* makefile;
50   const char* ninja_dir;
51   const char* ninja_suffix;
52   int num_cpus;
53   int num_jobs;
54   int remote_num_jobs;
55   vector<const char*> subkati_args;
56   vector<Symbol> targets;
57   vector<StringPiece> cl_vars;
58 
59   void Parse(int argc, char** argv);
60 };
61 
62 extern Flags g_flags;
63 
64 #endif  // FLAGS_H_
65