| 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 136 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 147 'platform/platform_event_dispatcher.h', | 147 'platform/platform_event_dispatcher.h', |
| 148 'platform/platform_event_observer.h', | 148 'platform/platform_event_observer.h', |
| 149 'platform/platform_event_source.cc', | 149 'platform/platform_event_source.cc', |
| 150 'platform/platform_event_source.h', | 150 'platform/platform_event_source.h', |
| 151 'platform/platform_event_source_stub.cc', | 151 'platform/platform_event_source_stub.cc', |
| 152 'platform/platform_event_types.h', | 152 'platform/platform_event_types.h', |
| 153 'platform/scoped_event_dispatcher.cc', | 153 'platform/scoped_event_dispatcher.cc', |
| 154 'platform/scoped_event_dispatcher.h', | 154 'platform/scoped_event_dispatcher.h', |
| 155 'platform/x11/x11_event_source.cc', | 155 'platform/x11/x11_event_source.cc', |
| 156 'platform/x11/x11_event_source.h', | 156 'platform/x11/x11_event_source.h', |
| 157 'platform/x11/x11_event_source_glib.cc', |
| 158 'platform/x11/x11_event_source_libevent.cc', |
| 157 'win/events_win.cc', | 159 'win/events_win.cc', |
| 158 'x/events_x.cc', | 160 'x/events_x.cc', |
| 159 'linux/text_edit_command_auralinux.cc', | 161 'linux/text_edit_command_auralinux.cc', |
| 160 'linux/text_edit_command_auralinux.h', | 162 'linux/text_edit_command_auralinux.h', |
| 161 'linux/text_edit_key_bindings_delegate_auralinux.cc', | 163 'linux/text_edit_key_bindings_delegate_auralinux.cc', |
| 162 'linux/text_edit_key_bindings_delegate_auralinux.h', | 164 'linux/text_edit_key_bindings_delegate_auralinux.h', |
| 163 ], | 165 ], |
| 164 'conditions': [ | 166 'conditions': [ |
| 165 # We explicitly enumerate the platforms we _do_ provide native cracking | 167 # We explicitly enumerate the platforms we _do_ provide native cracking |
| 166 # for here. | 168 # for here. |
| (...skipping 16 matching lines...) Expand all Loading... |
| 183 ], | 185 ], |
| 184 'dependencies': [ | 186 'dependencies': [ |
| 185 '../../build/linux/system.gyp:x11', | 187 '../../build/linux/system.gyp:x11', |
| 186 '../gfx/gfx.gyp:gfx_x11', | 188 '../gfx/gfx.gyp:gfx_x11', |
| 187 ], | 189 ], |
| 188 }], | 190 }], |
| 189 ['use_glib==1', { | 191 ['use_glib==1', { |
| 190 'dependencies': [ | 192 'dependencies': [ |
| 191 '../../build/linux/system.gyp:glib', | 193 '../../build/linux/system.gyp:glib', |
| 192 ], | 194 ], |
| 195 'sources!': [ |
| 196 'platform/x11/x11_event_source_libevent.cc', |
| 197 ], |
| 198 }, { |
| 199 # use_glib == 0 |
| 200 'sources!': [ |
| 201 'platform/x11/x11_event_source_glib.cc', |
| 202 ], |
| 193 }], | 203 }], |
| 194 ['use_ozone_evdev==1', { | 204 ['use_ozone_evdev==1', { |
| 195 'defines': ['USE_OZONE_EVDEV=1'], | 205 'defines': ['USE_OZONE_EVDEV=1'], |
| 196 }], | 206 }], |
| 197 ['use_ozone_evdev==1 and use_udev==1', { | 207 ['use_ozone_evdev==1 and use_udev==1', { |
| 198 'dependencies': [ | 208 'dependencies': [ |
| 199 '<(DEPTH)/build/linux/system.gyp:udev', | 209 '<(DEPTH)/build/linux/system.gyp:udev', |
| 200 ], | 210 ], |
| 201 }], | 211 }], |
| 202 ['use_ozone_evdev==1 and use_evdev_gestures==1', { | 212 ['use_ozone_evdev==1 and use_evdev_gestures==1', { |
| (...skipping 179 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 382 ], | 392 ], |
| 383 'variables': { | 393 'variables': { |
| 384 'test_suite_name': 'events_unittests', | 394 'test_suite_name': 'events_unittests', |
| 385 }, | 395 }, |
| 386 'includes': [ '../../build/apk_test.gypi' ], | 396 'includes': [ '../../build/apk_test.gypi' ], |
| 387 }, | 397 }, |
| 388 ], | 398 ], |
| 389 }], | 399 }], |
| 390 ], | 400 ], |
| 391 } | 401 } |
| OLD | NEW |