OLD | NEW |
1 # Copyright 2013 The Chromium Authors. All rights reserved. | 1 # Copyright 2013 The Chromium Authors. All rights reserved. |
2 # Use of this source code is governed by a BSD-style license that can be | 2 # Use of this source code is governed by a BSD-style license that can be |
3 # found in the LICENSE file. | 3 # found in the LICENSE file. |
4 | 4 |
5 { | 5 { |
6 'variables': { | 6 'variables': { |
7 'chromium_code': 1, | 7 'chromium_code': 1, |
8 }, | 8 }, |
9 | 9 |
10 'targets': [ | 10 'targets': [ |
(...skipping 45 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
56 'platform/ax_platform_node_mac.mm', | 56 'platform/ax_platform_node_mac.mm', |
57 'platform/ax_platform_node_win.h', | 57 'platform/ax_platform_node_win.h', |
58 'platform/ax_platform_node_win.cc', | 58 'platform/ax_platform_node_win.cc', |
59 ], | 59 ], |
60 'conditions': [ | 60 'conditions': [ |
61 ['OS=="win"', { | 61 ['OS=="win"', { |
62 'dependencies': [ | 62 'dependencies': [ |
63 '../../third_party/iaccessible2/iaccessible2.gyp:iaccessible2' | 63 '../../third_party/iaccessible2/iaccessible2.gyp:iaccessible2' |
64 ], | 64 ], |
65 }], | 65 }], |
66 ['OS=="linux" and chromeos==0 and use_gconf==1',{ | |
67 'dependencies': [ | |
68 '../../build/linux/system.gyp:gconf', | |
69 ], | |
70 }], | |
71 ['OS=="linux" and chromeos==0 and use_dbus==1', { | |
72 'dependencies': [ | |
73 '../../build/linux/system.gyp:dbus', | |
74 '../../dbus/dbus.gyp:dbus', | |
75 ], | |
76 }], | |
77 ['OS=="linux" and chromeos==0 and use_x11==1', { | 66 ['OS=="linux" and chromeos==0 and use_x11==1', { |
78 'dependencies': [ | 67 'dependencies': [ |
79 '../../build/linux/system.gyp:atk', | 68 '../../build/linux/system.gyp:atk', |
| 69 '../../build/linux/system.gyp:gconf', |
80 '../../build/linux/system.gyp:glib', | 70 '../../build/linux/system.gyp:glib', |
81 ], | 71 ], |
82 'variables': { | 72 'variables': { |
83 'clang_warning_flags': [ | 73 'clang_warning_flags': [ |
84 # glib uses the pre-c++11 typedef-as-static_assert hack. | 74 # glib uses the pre-c++11 typedef-as-static_assert hack. |
85 '-Wno-unused-local-typedefs', | 75 '-Wno-unused-local-typedefs', |
86 ], | 76 ], |
87 }, | 77 }, |
88 }], | 78 }], |
89 ['OS!="linux" or chromeos==1 or use_x11==0', { | 79 ['OS!="linux" or chromeos==1 or use_x11==0', { |
(...skipping 97 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
187 'dependencies': [ | 177 'dependencies': [ |
188 '../../tools/xdisplaycheck/xdisplaycheck.gyp:xdisplaycheck', | 178 '../../tools/xdisplaycheck/xdisplaycheck.gyp:xdisplaycheck', |
189 ], | 179 ], |
190 }], | 180 }], |
191 ], | 181 ], |
192 }, | 182 }, |
193 ], | 183 ], |
194 }], | 184 }], |
195 ], | 185 ], |
196 } | 186 } |
OLD | NEW |