Shinichiro Hamaji | 08808d3 | 2015-06-26 08:02:45 +0900 | [diff] [blame] | 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 | |
Shinichiro Hamaji | 64cd806 | 2015-06-27 16:58:36 +0900 | [diff] [blame] | 18 | extern bool g_is_dry_run; |
Shinichiro Hamaji | 54e52dd | 2015-06-27 17:14:06 +0900 | [diff] [blame] | 19 | extern bool g_enable_stat_logs; |
Shinichiro Hamaji | 94d7a61 | 2015-06-29 18:16:11 +0900 | [diff] [blame] | 20 | extern const char* g_ignore_optional_include_pattern; |
Shinichiro Hamaji | 9facae2 | 2015-07-03 17:16:36 +0900 | [diff] [blame] | 21 | extern const char* g_goma_dir; |
Shinichiro Hamaji | 087cecd | 2015-07-06 19:51:58 +0900 | [diff] [blame] | 22 | extern int g_num_jobs; |
Shinichiro Hamaji | 09e0839 | 2015-07-17 09:04:43 +0900 | [diff] [blame] | 23 | extern bool g_detect_android_echo; |
Shinichiro Hamaji | 998ccf7 | 2015-07-18 12:37:02 +0900 | [diff] [blame] | 24 | extern bool g_gen_regen_rule; |
Shinichiro Hamaji | d556e62 | 2015-07-18 15:33:58 +0900 | [diff] [blame] | 25 | extern bool g_error_on_env_change; |
Shinichiro Hamaji | 08808d3 | 2015-06-26 08:02:45 +0900 | [diff] [blame] | 26 | |
| 27 | #endif // FLAGS_H_ |