Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(9)

Side by Side Diff: ui/events/events.gyp

Issue 219743002: x11: Move X event handling out of the message-pump. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: tot-merge-r261267 Created 6 years, 8 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch | Annotate | Revision Log
OLDNEW
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 123 matching lines...) Expand 10 before | Expand all | Expand 10 after
134 'ozone/evdev/key_event_converter_evdev.h', 134 'ozone/evdev/key_event_converter_evdev.h',
135 'ozone/evdev/touch_event_converter_evdev.cc', 135 'ozone/evdev/touch_event_converter_evdev.cc',
136 'ozone/evdev/touch_event_converter_evdev.h', 136 'ozone/evdev/touch_event_converter_evdev.h',
137 'ozone/event_factory_ozone.cc', 137 'ozone/event_factory_ozone.cc',
138 'ozone/event_factory_ozone.h', 138 'ozone/event_factory_ozone.h',
139 'ozone/events_ozone.cc', 139 'ozone/events_ozone.cc',
140 'platform/platform_event_dispatcher.h', 140 'platform/platform_event_dispatcher.h',
141 'platform/platform_event_observer.h', 141 'platform/platform_event_observer.h',
142 'platform/platform_event_source.cc', 142 'platform/platform_event_source.cc',
143 'platform/platform_event_source.h', 143 'platform/platform_event_source.h',
144 'platform/platform_event_source_stub.cc',
144 'platform/platform_event_types.h', 145 'platform/platform_event_types.h',
145 'platform/scoped_event_dispatcher.cc', 146 'platform/scoped_event_dispatcher.cc',
146 'platform/scoped_event_dispatcher.h', 147 'platform/scoped_event_dispatcher.h',
147 'platform/x11/x11_event_source.cc', 148 'platform/x11/x11_event_source.cc',
148 'platform/x11/x11_event_source.h', 149 'platform/x11/x11_event_source.h',
149 'win/events_win.cc', 150 'win/events_win.cc',
150 'x/events_x.cc', 151 'x/events_x.cc',
151 'x/text_edit_command_x11.cc', 152 'x/text_edit_command_x11.cc',
152 'x/text_edit_command_x11.h', 153 'x/text_edit_command_x11.h',
153 'x/text_edit_key_bindings_delegate_x11.cc', 154 'x/text_edit_key_bindings_delegate_x11.cc',
154 'x/text_edit_key_bindings_delegate_x11.h', 155 'x/text_edit_key_bindings_delegate_x11.h',
155 ], 156 ],
156 'conditions': [ 157 'conditions': [
157 # We explicitly enumerate the platforms we _do_ provide native cracking 158 # We explicitly enumerate the platforms we _do_ provide native cracking
158 # for here. 159 # for here.
159 ['OS=="win" or use_x11==1 or use_ozone==1', { 160 ['OS=="win" or use_x11==1 or use_ozone==1', {
160 'sources!': [ 161 'sources!': [
161 'events_stub.cc', 162 'events_stub.cc',
162 ], 163 ],
163 }], 164 }],
164 ['chromeos==1', { 165 ['chromeos==1', {
165 'sources!': [ 166 'sources!': [
166 'x/text_edit_command_x11.cc', 167 'x/text_edit_command_x11.cc',
167 'x/text_edit_command_x11.h', 168 'x/text_edit_command_x11.h',
168 'x/text_edit_key_bindings_delegate_x11.cc', 169 'x/text_edit_key_bindings_delegate_x11.cc',
169 'x/text_edit_key_bindings_delegate_x11.h', 170 'x/text_edit_key_bindings_delegate_x11.h',
170 ], 171 ],
171 }], 172 }],
172 ['use_x11==1', { 173 ['use_x11==1', {
174 'sources!': [
175 'platform/platform_event_source_stub.cc',
176 ],
173 'dependencies': [ 177 'dependencies': [
174 '<(DEPTH)/build/linux/system.gyp:x11', 178 '<(DEPTH)/build/linux/system.gyp:x11',
175 ], 179 ],
176 }], 180 }],
177 ['use_glib==1', { 181 ['use_glib==1', {
178 'dependencies': [ 182 'dependencies': [
179 '../../build/linux/system.gyp:glib', 183 '../../build/linux/system.gyp:glib',
180 ], 184 ],
181 }], 185 }],
182 ['use_ozone_evdev==1', { 186 ['use_ozone_evdev==1', {
(...skipping 172 matching lines...) Expand 10 before | Expand all | Expand 10 after
355 'variables': { 359 'variables': {
356 'test_suite_name': 'events_unittests', 360 'test_suite_name': 'events_unittests',
357 'input_shlib_path': '<(SHARED_LIB_DIR)/<(SHARED_LIB_PREFIX)events_un ittests<(SHARED_LIB_SUFFIX)', 361 'input_shlib_path': '<(SHARED_LIB_DIR)/<(SHARED_LIB_PREFIX)events_un ittests<(SHARED_LIB_SUFFIX)',
358 }, 362 },
359 'includes': [ '../../build/apk_test.gypi' ], 363 'includes': [ '../../build/apk_test.gypi' ],
360 }, 364 },
361 ], 365 ],
362 }], 366 }],
363 ], 367 ],
364 } 368 }
OLDNEW
« no previous file with comments | « ui/display/chromeos/x11/native_display_event_dispatcher_x11_unittest.cc ('k') | ui/events/platform/platform_event_source.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698