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

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

Issue 205253003: [master] x11: Move X event handling out of the message-pump. Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: fix-merge 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 ], 152 ],
152 'conditions': [ 153 'conditions': [
153 # We explicitly enumerate the platforms we _do_ provide native cracking 154 # We explicitly enumerate the platforms we _do_ provide native cracking
154 # for here. 155 # for here.
155 ['OS=="win" or use_x11==1 or use_ozone==1', { 156 ['OS=="win" or use_x11==1 or use_ozone==1', {
156 'sources!': [ 157 'sources!': [
157 'events_stub.cc', 158 'events_stub.cc',
158 ], 159 ],
159 }], 160 }],
160 ['use_x11==1', { 161 ['use_x11==1', {
162 'sources!': [
163 'platform/platform_event_source_stub.cc',
164 ],
161 'dependencies': [ 165 'dependencies': [
162 '<(DEPTH)/build/linux/system.gyp:x11', 166 '<(DEPTH)/build/linux/system.gyp:x11',
163 ], 167 ],
164 }], 168 }],
165 ['use_glib==1', { 169 ['use_glib==1', {
166 'dependencies': [ 170 'dependencies': [
167 '../../build/linux/system.gyp:glib', 171 '../../build/linux/system.gyp:glib',
168 ], 172 ],
169 }], 173 }],
170 ['use_ozone_evdev==1', { 174 ['use_ozone_evdev==1', {
(...skipping 172 matching lines...) Expand 10 before | Expand all | Expand 10 after
343 'variables': { 347 'variables': {
344 'test_suite_name': 'events_unittests', 348 'test_suite_name': 'events_unittests',
345 'input_shlib_path': '<(SHARED_LIB_DIR)/<(SHARED_LIB_PREFIX)events_un ittests<(SHARED_LIB_SUFFIX)', 349 'input_shlib_path': '<(SHARED_LIB_DIR)/<(SHARED_LIB_PREFIX)events_un ittests<(SHARED_LIB_SUFFIX)',
346 }, 350 },
347 'includes': [ '../../build/apk_test.gypi' ], 351 'includes': [ '../../build/apk_test.gypi' ],
348 }, 352 },
349 ], 353 ],
350 }], 354 }],
351 ], 355 ],
352 } 356 }
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