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 'targets': [ | 9 'targets': [ |
10 { | 10 { |
(...skipping 156 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
167 'base/view_prop_unittest.cc', | 167 'base/view_prop_unittest.cc', |
168 ], | 168 ], |
169 }], | 169 }], |
170 ['use_x11==1 and use_aura==1', { | 170 ['use_x11==1 and use_aura==1', { |
171 'sources': [ | 171 'sources': [ |
172 'base/cursor/cursor_loader_x11_unittest.cc', | 172 'base/cursor/cursor_loader_x11_unittest.cc', |
173 ], | 173 ], |
174 }], | 174 }], |
175 ['OS=="mac"', { | 175 ['OS=="mac"', { |
176 'dependencies': [ | 176 'dependencies': [ |
| 177 '../third_party/mozilla/mozilla.gyp:mozilla', |
177 'events/events.gyp:events_test_support', | 178 'events/events.gyp:events_test_support', |
178 'gfx/gfx.gyp:gfx_test_support', | 179 'gfx/gfx.gyp:gfx_test_support', |
179 'ui_unittests_bundle', | 180 'ui_unittests_bundle', |
180 ], | 181 ], |
| 182 'conditions': [ |
| 183 ['component=="static_library"', { |
| 184 # Needed for mozilla.gyp. |
| 185 'xcode_settings': {'OTHER_LDFLAGS': ['-Wl,-ObjC']}, |
| 186 }], |
| 187 ], |
181 }], | 188 }], |
182 ['use_aura==1 or toolkit_views==1', { | 189 ['use_aura==1 or toolkit_views==1', { |
183 'sources': [ | 190 'sources': [ |
184 'base/dragdrop/os_exchange_data_unittest.cc', | 191 'base/dragdrop/os_exchange_data_unittest.cc', |
185 ], | 192 ], |
186 'dependencies': [ | 193 'dependencies': [ |
187 'events/events.gyp:events', | 194 'events/events.gyp:events', |
188 'events/events.gyp:events_base', | 195 'events/events.gyp:events_base', |
189 'events/events.gyp:events_test_support', | 196 'events/events.gyp:events_test_support', |
190 'events/platform/events_platform.gyp:events_platform', | 197 'events/platform/events_platform.gyp:events_platform', |
(...skipping 55 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
246 ], | 253 ], |
247 'variables': { | 254 'variables': { |
248 'test_suite_name': 'ui_unittests', | 255 'test_suite_name': 'ui_unittests', |
249 }, | 256 }, |
250 'includes': [ '../build/apk_test.gypi' ], | 257 'includes': [ '../build/apk_test.gypi' ], |
251 }, | 258 }, |
252 ], | 259 ], |
253 }], | 260 }], |
254 ], | 261 ], |
255 } | 262 } |
OLD | NEW |