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