Chromium Code Reviews| Index: tools/gn/command_format.cc |
| diff --git a/tools/gn/command_format.cc b/tools/gn/command_format.cc |
| index 81424ab7a445a291b02ba0caefc2b5a21d7a573b..9aeeca58369521544b287734a86c959e44d75f3c 100644 |
| --- a/tools/gn/command_format.cc |
| +++ b/tools/gn/command_format.cc |
| @@ -299,7 +299,7 @@ void Printer::AnnotatePreferredMultilineAssignment(const BinaryOpNode* binop) { |
| // things, but not flags things. |
| if (binop->op().value() == "=" && ident && list) { |
| const base::StringPiece lhs = ident->value().value(); |
| - if (lhs == "data" || lhs == "datadeps" || lhs == "deps" || |
| + if (lhs == "data" || lhs == "data_deps" || lhs == "deps" || |
|
eroman
2015/09/12 00:35:46
Not sure whether this is desired or not..
|
| lhs == "inputs" || lhs == "outputs" || lhs == "public" || |
| lhs == "public_deps" || lhs == "sources") { |
| const_cast<ListNode*>(list)->set_prefer_multiline(true); |