blob: 1c518cdae781a14ed9cef9fba2a2597122ca3e7f [file] [log] [blame]
Shinichiro Hamaji08808d32015-06-26 08:02:45 +09001// 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 Hamaji64cd8062015-06-27 16:58:36 +090018extern bool g_is_dry_run;
Shinichiro Hamaji54e52dd2015-06-27 17:14:06 +090019extern bool g_enable_stat_logs;
Shinichiro Hamaji94d7a612015-06-29 18:16:11 +090020extern const char* g_ignore_optional_include_pattern;
Shinichiro Hamaji9facae22015-07-03 17:16:36 +090021extern const char* g_goma_dir;
Shinichiro Hamaji087cecd2015-07-06 19:51:58 +090022extern int g_num_jobs;
Shinichiro Hamaji09e08392015-07-17 09:04:43 +090023extern bool g_detect_android_echo;
Shinichiro Hamaji998ccf72015-07-18 12:37:02 +090024extern bool g_gen_regen_rule;
Shinichiro Hamajid556e622015-07-18 15:33:58 +090025extern bool g_error_on_env_change;
Shinichiro Hamaji08808d32015-06-26 08:02:45 +090026
27#endif // FLAGS_H_