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 265 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
276 'ozone/evdev/key_event_converter_evdev_unittest.cc', | 276 'ozone/evdev/key_event_converter_evdev_unittest.cc', |
277 'ozone/evdev/touch_event_converter_evdev_unittest.cc', | 277 'ozone/evdev/touch_event_converter_evdev_unittest.cc', |
278 'x/events_x_unittest.cc', | 278 'x/events_x_unittest.cc', |
279 ], | 279 ], |
280 'conditions': [ | 280 'conditions': [ |
281 ['OS=="linux" and linux_use_tcmalloc==1', { | 281 ['OS=="linux" and linux_use_tcmalloc==1', { |
282 'dependencies': [ | 282 'dependencies': [ |
283 '<(DEPTH)/base/allocator/allocator.gyp:allocator', | 283 '<(DEPTH)/base/allocator/allocator.gyp:allocator', |
284 ], | 284 ], |
285 }], | 285 }], |
| 286 # Exclude tests that rely on event_utils.h for platforms that do not |
| 287 # provide native cracking, i.e., platforms that use events_stub.cc. |
| 288 ['OS!="win" and use_x11!=1 and use_ozone!=1', { |
| 289 'sources!': [ |
| 290 'event_unittest.cc', |
| 291 ], |
| 292 }], |
286 ['OS == "android" and gtest_target_type == "shared_library"', { | 293 ['OS == "android" and gtest_target_type == "shared_library"', { |
287 'dependencies': [ | 294 'dependencies': [ |
288 '../../testing/android/native_test.gyp:native_test_native_code', | 295 '../../testing/android/native_test.gyp:native_test_native_code', |
289 ], | 296 ], |
290 }], | 297 }], |
291 ], | 298 ], |
292 }, | 299 }, |
293 ], | 300 ], |
294 'conditions': [ | 301 'conditions': [ |
295 # Special target to wrap a gtest_target_type==shared_library | 302 # Special target to wrap a gtest_target_type==shared_library |
(...skipping 10 matching lines...) Expand all Loading... |
306 'variables': { | 313 'variables': { |
307 'test_suite_name': 'events_unittests', | 314 'test_suite_name': 'events_unittests', |
308 'input_shlib_path': '<(SHARED_LIB_DIR)/<(SHARED_LIB_PREFIX)events_un
ittests<(SHARED_LIB_SUFFIX)', | 315 'input_shlib_path': '<(SHARED_LIB_DIR)/<(SHARED_LIB_PREFIX)events_un
ittests<(SHARED_LIB_SUFFIX)', |
309 }, | 316 }, |
310 'includes': [ '../../build/apk_test.gypi' ], | 317 'includes': [ '../../build/apk_test.gypi' ], |
311 }, | 318 }, |
312 ], | 319 ], |
313 }], | 320 }], |
314 ], | 321 ], |
315 } | 322 } |
OLD | NEW |