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..a933f4b8cd6a9ab59f4eeced6654a0445c20d882 |
| --- /dev/null |
| +++ b/tools/gn/format_test_data/063.gn |
| @@ -0,0 +1,18 @@ |
| +source_set("test") { |
| + deps = [ |
| + "//c", |
| + "//a", |
| + ":b", |
| + "../d", |
| + ] |
| + |
| + public_deps = [] |
| + if (condition) { |
| + public_deps += [ |
| + "//y", |
| + "//w", |
| + ":x", |
| + "../z", |
| + ] |
| + } |
| +} |