Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(398)

Unified Diff: tools/gn/format_test_data/042.gn

Issue 780543003: gn format: Add 'outputs' to preferred-multiline lists (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: . Created 6 years ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
Index: tools/gn/format_test_data/042.gn
diff --git a/tools/gn/format_test_data/042.gn b/tools/gn/format_test_data/042.gn
index 7affa70391c060a912d5237c2f12d0c1140ba03b..b827f29e0704b8ec793955fd7690982593557a22 100644
--- a/tools/gn/format_test_data/042.gn
+++ b/tools/gn/format_test_data/042.gn
@@ -10,6 +10,7 @@ if (true) {
include_dirs = []
inputs = []
ldflags = []
+ outputs = []
public_deps = []
sources = []
} else if (true) {
@@ -23,6 +24,7 @@ if (true) {
include_dirs = [ "x" ]
inputs = [ "x" ]
ldflags = [ "x" ]
+ outputs = [ "x" ]
public_deps = [ "x" ]
sources = [ "x" ]
} else {
@@ -36,6 +38,7 @@ if (true) {
include_dirs = [ "x", "y", "z"]
inputs = [ "x", "y", "z"]
ldflags = [ "x", "y", "z"]
+ outputs = [ "x", "y", "z"]
public_deps = [ "x", "y", "z"]
sources = [ "x", "y", "z"]
}

Powered by Google App Engine
This is Rietveld 408576698