Chromium Code Reviews| 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 67 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
| 78 '../gfx/gfx.gyp:gfx', | 78 '../gfx/gfx.gyp:gfx', |
| 79 '../gfx/gfx.gyp:gfx_geometry', | 79 '../gfx/gfx.gyp:gfx_geometry', |
| 80 'events_base', | 80 'events_base', |
| 81 ], | 81 ], |
| 82 'defines': [ | 82 'defines': [ |
| 83 'EVENTS_IMPLEMENTATION', | 83 'EVENTS_IMPLEMENTATION', |
| 84 ], | 84 ], |
| 85 'sources': [ | 85 'sources': [ |
| 86 'cocoa/cocoa_event_utils.h', | 86 'cocoa/cocoa_event_utils.h', |
| 87 'cocoa/cocoa_event_utils.mm', | 87 'cocoa/cocoa_event_utils.mm', |
| 88 'cocoa/events_mac.mm', | |
| 88 'event.cc', | 89 'event.cc', |
| 89 'event.h', | 90 'event.h', |
| 90 'event_dispatcher.cc', | 91 'event_dispatcher.cc', |
| 91 'event_dispatcher.h', | 92 'event_dispatcher.h', |
| 92 'event_handler.cc', | 93 'event_handler.cc', |
| 93 'event_handler.h', | 94 'event_handler.h', |
| 94 'event_processor.cc', | 95 'event_processor.cc', |
| 95 'event_processor.h', | 96 'event_processor.h', |
| 96 'event_rewriter.h', | 97 'event_rewriter.h', |
| 97 'event_source.cc', | 98 'event_source.cc', |
| (...skipping 61 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
| 159 'win/events_win.cc', | 160 'win/events_win.cc', |
| 160 'x/events_x.cc', | 161 'x/events_x.cc', |
| 161 'linux/text_edit_command_auralinux.cc', | 162 'linux/text_edit_command_auralinux.cc', |
| 162 'linux/text_edit_command_auralinux.h', | 163 'linux/text_edit_command_auralinux.h', |
| 163 'linux/text_edit_key_bindings_delegate_auralinux.cc', | 164 'linux/text_edit_key_bindings_delegate_auralinux.cc', |
| 164 'linux/text_edit_key_bindings_delegate_auralinux.h', | 165 'linux/text_edit_key_bindings_delegate_auralinux.h', |
| 165 ], | 166 ], |
| 166 'conditions': [ | 167 'conditions': [ |
| 167 # We explicitly enumerate the platforms we _do_ provide native cracking | 168 # We explicitly enumerate the platforms we _do_ provide native cracking |
| 168 # for here. | 169 # for here. |
| 169 ['OS=="win" or use_x11==1 or use_ozone==1', { | 170 ['OS=="win" or OS=="mac" or use_x11==1 or use_ozone==1', { |
| 170 'sources!': [ | 171 'sources!': [ |
| 171 'events_stub.cc', | 172 'events_stub.cc', |
| 172 ], | 173 ], |
| 173 }], | 174 }], |
| 174 ['chromeos==1', { | 175 ['chromeos==1', { |
| 175 'sources!': [ | 176 'sources!': [ |
| 176 'linux/text_edit_command_auralinux.cc', | 177 'linux/text_edit_command_auralinux.cc', |
| 177 'linux/text_edit_command_auralinux.h', | 178 'linux/text_edit_command_auralinux.h', |
| 178 'linux/text_edit_key_bindings_delegate_auralinux.cc', | 179 'linux/text_edit_key_bindings_delegate_auralinux.cc', |
| 179 'linux/text_edit_key_bindings_delegate_auralinux.h', | 180 'linux/text_edit_key_bindings_delegate_auralinux.h', |
| (...skipping 143 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
| 323 { | 324 { |
| 324 'target_name': 'events_unittests', | 325 'target_name': 'events_unittests', |
| 325 'type': '<(gtest_target_type)', | 326 'type': '<(gtest_target_type)', |
| 326 'dependencies': [ | 327 'dependencies': [ |
| 327 '<(DEPTH)/base/base.gyp:base', | 328 '<(DEPTH)/base/base.gyp:base', |
| 328 '<(DEPTH)/base/base.gyp:run_all_unittests', | 329 '<(DEPTH)/base/base.gyp:run_all_unittests', |
| 329 '<(DEPTH)/base/base.gyp:test_support_base', | 330 '<(DEPTH)/base/base.gyp:test_support_base', |
| 330 '<(DEPTH)/testing/gtest.gyp:gtest', | 331 '<(DEPTH)/testing/gtest.gyp:gtest', |
| 331 '../gfx/gfx.gyp:gfx', | 332 '../gfx/gfx.gyp:gfx', |
| 332 '../gfx/gfx.gyp:gfx_geometry', | 333 '../gfx/gfx.gyp:gfx_geometry', |
| 334 '../gfx/gfx.gyp:gfx_test_support', | |
|
sadrul
2014/04/24 19:47:12
I think this is already in from tfarina@s change.
tapted
2014/04/25 03:44:55
So it is!
| |
| 333 'dom4_keycode_converter', | 335 'dom4_keycode_converter', |
| 334 'events', | 336 'events', |
| 335 'events_base', | 337 'events_base', |
| 336 'events_test_support', | 338 'events_test_support', |
| 337 'gesture_detection' | 339 'gesture_detection' |
| 338 ], | 340 ], |
| 339 'sources': [ | 341 'sources': [ |
| 340 'cocoa/cocoa_event_utils_unittest.mm', | 342 'cocoa/events_mac_unittest.mm', |
| 341 'event_dispatcher_unittest.cc', | 343 'event_dispatcher_unittest.cc', |
| 342 'event_processor_unittest.cc', | 344 'event_processor_unittest.cc', |
| 343 'event_rewriter_unittest.cc', | 345 'event_rewriter_unittest.cc', |
| 344 'event_unittest.cc', | 346 'event_unittest.cc', |
| 345 'gestures/velocity_calculator_unittest.cc', | 347 'gestures/velocity_calculator_unittest.cc', |
| 346 'gesture_detection/bitset_32_unittest.cc', | 348 'gesture_detection/bitset_32_unittest.cc', |
| 347 'gesture_detection/gesture_provider_unittest.cc', | 349 'gesture_detection/gesture_provider_unittest.cc', |
| 348 'gesture_detection/mock_motion_event.h', | 350 'gesture_detection/mock_motion_event.h', |
| 349 'gesture_detection/mock_motion_event.cc', | 351 'gesture_detection/mock_motion_event.cc', |
| 350 'gesture_detection/velocity_tracker_unittest.cc', | 352 'gesture_detection/velocity_tracker_unittest.cc', |
| (...skipping 41 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
| 392 ], | 394 ], |
| 393 'variables': { | 395 'variables': { |
| 394 'test_suite_name': 'events_unittests', | 396 'test_suite_name': 'events_unittests', |
| 395 }, | 397 }, |
| 396 'includes': [ '../../build/apk_test.gypi' ], | 398 'includes': [ '../../build/apk_test.gypi' ], |
| 397 }, | 399 }, |
| 398 ], | 400 ], |
| 399 }], | 401 }], |
| 400 ], | 402 ], |
| 401 } | 403 } |
| OLD | NEW |