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 150 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
330 '<(DEPTH)/testing/gtest.gyp:gtest', | 331 '<(DEPTH)/testing/gtest.gyp:gtest', |
331 '../gfx/gfx.gyp:gfx_geometry', | 332 '../gfx/gfx.gyp:gfx_geometry', |
332 '../gfx/gfx.gyp:gfx_test_support', | 333 '../gfx/gfx.gyp:gfx_test_support', |
333 'dom4_keycode_converter', | 334 'dom4_keycode_converter', |
334 'events', | 335 'events', |
335 'events_base', | 336 'events_base', |
336 'events_test_support', | 337 'events_test_support', |
337 'gesture_detection' | 338 'gesture_detection' |
338 ], | 339 ], |
339 'sources': [ | 340 'sources': [ |
340 'cocoa/cocoa_event_utils_unittest.mm', | 341 'cocoa/events_mac_unittest.mm', |
341 'event_dispatcher_unittest.cc', | 342 'event_dispatcher_unittest.cc', |
342 'event_processor_unittest.cc', | 343 'event_processor_unittest.cc', |
343 'event_rewriter_unittest.cc', | 344 'event_rewriter_unittest.cc', |
344 'event_unittest.cc', | 345 'event_unittest.cc', |
345 'gestures/velocity_calculator_unittest.cc', | 346 'gestures/velocity_calculator_unittest.cc', |
346 'gesture_detection/bitset_32_unittest.cc', | 347 'gesture_detection/bitset_32_unittest.cc', |
347 'gesture_detection/gesture_provider_unittest.cc', | 348 'gesture_detection/gesture_provider_unittest.cc', |
348 'gesture_detection/mock_motion_event.h', | 349 'gesture_detection/mock_motion_event.h', |
349 'gesture_detection/mock_motion_event.cc', | 350 'gesture_detection/mock_motion_event.cc', |
350 'gesture_detection/velocity_tracker_unittest.cc', | 351 'gesture_detection/velocity_tracker_unittest.cc', |
(...skipping 41 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
392 ], | 393 ], |
393 'variables': { | 394 'variables': { |
394 'test_suite_name': 'events_unittests', | 395 'test_suite_name': 'events_unittests', |
395 }, | 396 }, |
396 'includes': [ '../../build/apk_test.gypi' ], | 397 'includes': [ '../../build/apk_test.gypi' ], |
397 }, | 398 }, |
398 ], | 399 ], |
399 }], | 400 }], |
400 ], | 401 ], |
401 } | 402 } |
OLD | NEW |