| Index: tools/gn/command_format.cc
|
| diff --git a/tools/gn/command_format.cc b/tools/gn/command_format.cc
|
| index 81424ab7a445a291b02ba0caefc2b5a21d7a573b..5eff6017f3f9c2f4a4574e852e7e0ca0373d2d0c 100644
|
| --- a/tools/gn/command_format.cc
|
| +++ b/tools/gn/command_format.cc
|
| @@ -299,9 +299,9 @@ 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" ||
|
| - lhs == "inputs" || lhs == "outputs" || lhs == "public" ||
|
| - lhs == "public_deps" || lhs == "sources") {
|
| + if (lhs == "data" || lhs == "datadeps" || lhs == "data_deps" ||
|
| + lhs == "deps" || lhs == "inputs" || lhs == "outputs" ||
|
| + lhs == "public" || lhs == "public_deps" || lhs == "sources") {
|
| const_cast<ListNode*>(list)->set_prefer_multiline(true);
|
| }
|
| }
|
|
|