| Index: tools/gn/action_values.h
|
| diff --git a/tools/gn/action_values.h b/tools/gn/action_values.h
|
| index b20d65c4a2ea94004bc437bfbb5ec76f5049ed06..3b3c2a62197f559dd0b52bef4378ea347cdb7dd9 100644
|
| --- a/tools/gn/action_values.h
|
| +++ b/tools/gn/action_values.h
|
| @@ -43,11 +43,16 @@ class ActionValues {
|
| bool has_depfile() const { return !depfile_.ranges().empty(); }
|
| void set_depfile(const SubstitutionPattern& depfile) { depfile_ = depfile; }
|
|
|
| + // Console pool option
|
| + bool is_console() const { return console_; }
|
| + void set_console(bool value) { console_ = value; }
|
| +
|
| private:
|
| SourceFile script_;
|
| SubstitutionList args_;
|
| SubstitutionList outputs_;
|
| SubstitutionPattern depfile_;
|
| + bool console_;
|
|
|
| DISALLOW_COPY_AND_ASSIGN(ActionValues);
|
| };
|
|
|