Upstream version 11.40.271.0
[platform/framework/web/crosswalk.git] / src / tools / gn / format_test_data / 042.gn
1 # Test both one element and two element for specifically name LHSs.
2 if (true) {
3   deps = [ "x" ]
4   sources = [ "x" ]
5   public_deps = [ "x" ]
6   include_dirs = ["x"]
7   defines = ["x"]
8   cflags = ["x"]
9 } else {
10   deps = [ "x", "y" ]
11   sources = [ "x", "y" ]
12   public_deps = [ "x", "y" ]
13   include_dirs = ["x", "y"]
14   defines = ["x", "y"]
15   cflags = ["x", "y"]
16 }