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 'gesture_detection/mock_motion_event.cc', | 276 'gesture_detection/mock_motion_event.cc', |
277 'gesture_detection/velocity_tracker_unittest.cc', | 277 'gesture_detection/velocity_tracker_unittest.cc', |
278 'gesture_detection/touch_disposition_gesture_filter_unittest.cc', | 278 'gesture_detection/touch_disposition_gesture_filter_unittest.cc', |
279 'keycodes/dom4/keycode_converter_unittest.cc', | 279 'keycodes/dom4/keycode_converter_unittest.cc', |
280 'latency_info_unittest.cc', | 280 'latency_info_unittest.cc', |
281 'ozone/evdev/key_event_converter_evdev_unittest.cc', | 281 'ozone/evdev/key_event_converter_evdev_unittest.cc', |
282 'ozone/evdev/touch_event_converter_evdev_unittest.cc', | 282 'ozone/evdev/touch_event_converter_evdev_unittest.cc', |
283 'x/events_x_unittest.cc', | 283 'x/events_x_unittest.cc', |
284 ], | 284 ], |
285 'conditions': [ | 285 'conditions': [ |
286 ['OS=="linux" and linux_use_tcmalloc==1', { | 286 # TODO(dmikurube): Kill linux_use_tcmalloc. http://crbug.com/345554 |
| 287 ['OS=="linux" and ((use_allocator!="none" and use_allocator!="see_use_tc
malloc") or (use_allocator=="see_use_tcmalloc" and linux_use_tcmalloc==1))', { |
287 'dependencies': [ | 288 'dependencies': [ |
288 '<(DEPTH)/base/allocator/allocator.gyp:allocator', | 289 '<(DEPTH)/base/allocator/allocator.gyp:allocator', |
289 ], | 290 ], |
290 }], | 291 }], |
291 # Exclude tests that rely on event_utils.h for platforms that do not | 292 # Exclude tests that rely on event_utils.h for platforms that do not |
292 # provide native cracking, i.e., platforms that use events_stub.cc. | 293 # provide native cracking, i.e., platforms that use events_stub.cc. |
293 ['OS!="win" and use_x11!=1 and use_ozone!=1', { | 294 ['OS!="win" and use_x11!=1 and use_ozone!=1', { |
294 'sources!': [ | 295 'sources!': [ |
295 'event_unittest.cc', | 296 'event_unittest.cc', |
296 ], | 297 ], |
(...skipping 21 matching lines...) Expand all Loading... |
318 'variables': { | 319 'variables': { |
319 'test_suite_name': 'events_unittests', | 320 'test_suite_name': 'events_unittests', |
320 'input_shlib_path': '<(SHARED_LIB_DIR)/<(SHARED_LIB_PREFIX)events_un
ittests<(SHARED_LIB_SUFFIX)', | 321 'input_shlib_path': '<(SHARED_LIB_DIR)/<(SHARED_LIB_PREFIX)events_un
ittests<(SHARED_LIB_SUFFIX)', |
321 }, | 322 }, |
322 'includes': [ '../../build/apk_test.gypi' ], | 323 'includes': [ '../../build/apk_test.gypi' ], |
323 }, | 324 }, |
324 ], | 325 ], |
325 }], | 326 }], |
326 ], | 327 ], |
327 } | 328 } |
OLD | NEW |