Chromium Code Reviews| Index: tools/gn/format_test_data/063.gn |
| diff --git a/tools/gn/format_test_data/063.gn b/tools/gn/format_test_data/063.gn |
| new file mode 100644 |
| index 0000000000000000000000000000000000000000..a8307aff099b49cfc78619586599a7b8981cda2c |
| --- /dev/null |
| +++ b/tools/gn/format_test_data/063.gn |
| @@ -0,0 +1,17 @@ |
| +source_set("test") { |
| + deps = [ |
| + "//c", |
| + "//a", |
| + ":b", |
| + "../d", |
| + ] |
| + |
| + if (condition) { |
| + deps += [ |
| + "//y", |
| + "//w", |
| + ":x", |
| + "../z", |
| + ] |
| + } |
| +} |