Home | History | Annotate | Download | only in kati
      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_kati_warnings;
     31   bool enable_stat_logs;
     32   bool gen_all_targets;
     33   bool generate_ninja;
     34   bool is_dry_run;
     35   bool is_silent_mode;
     36   bool is_syntax_check_only;
     37   bool regen;
     38   bool regen_ignoring_kati_binary;
     39   bool use_find_emulator;
     40   const char* goma_dir;
     41   const char* ignore_dirty_pattern;
     42   const char* no_ignore_dirty_pattern;
     43   const char* ignore_optional_include_pattern;
     44   const char* makefile;
     45   const char* ninja_dir;
     46   const char* ninja_suffix;
     47   int num_cpus;
     48   int num_jobs;
     49   int remote_num_jobs;
     50   vector<const char*> subkati_args;
     51   vector<Symbol> targets;
     52   vector<StringPiece> cl_vars;
     53 
     54   void Parse(int argc, char** argv);
     55 };
     56 
     57 extern Flags g_flags;
     58 
     59 #endif  // FLAGS_H_
     60