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

Side by Side Diff: ui/ui.gyp

Issue 16466003: Event handling support for ozone. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 7 years, 6 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 (c) 2012 The Chromium Authors. All rights reserved. 1 # Copyright (c) 2012 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 'includes': [ 9 'includes': [
10 'shell_dialogs.gypi', 10 'shell_dialogs.gypi',
(...skipping 255 matching lines...) Expand 10 before | Expand all | Expand 10 after
266 'base/models/simple_menu_model.cc', 266 'base/models/simple_menu_model.cc',
267 'base/models/simple_menu_model.h', 267 'base/models/simple_menu_model.h',
268 'base/models/table_model.cc', 268 'base/models/table_model.cc',
269 'base/models/table_model.h', 269 'base/models/table_model.h',
270 'base/models/table_model_observer.h', 270 'base/models/table_model_observer.h',
271 'base/models/tree_model.cc', 271 'base/models/tree_model.cc',
272 'base/models/tree_model.h', 272 'base/models/tree_model.h',
273 'base/models/tree_node_iterator.h', 273 'base/models/tree_node_iterator.h',
274 'base/models/tree_node_model.h', 274 'base/models/tree_node_model.h',
275 'base/ozone/events_ozone.cc', 275 'base/ozone/events_ozone.cc',
276 'base/ozone/event_factory_ozone.cc',
277 'base/ozone/event_factory_ozone.h',
278 'base/ozone/event_converter_ozone.cc',
279 'base/ozone/event_converter_ozone.h',
280 'base/ozone/events_ozone.cc',
281 'base/ozone/key_event_converter_ozone.cc',
282 'base/ozone/key_event_converter_ozone.h',
276 'base/ozone/surface_factory_ozone.cc', 283 'base/ozone/surface_factory_ozone.cc',
277 'base/ozone/surface_factory_ozone.h', 284 'base/ozone/surface_factory_ozone.h',
285 'base/ozone/touch_event_converter_ozone.cc',
286 'base/ozone/touch_event_converter_ozone.h',
278 'base/range/range.cc', 287 'base/range/range.cc',
279 'base/range/range.h', 288 'base/range/range.h',
280 'base/range/range_mac.mm', 289 'base/range/range_mac.mm',
281 'base/range/range_win.cc', 290 'base/range/range_win.cc',
282 'base/resource/data_pack.cc', 291 'base/resource/data_pack.cc',
283 'base/resource/data_pack.h', 292 'base/resource/data_pack.h',
284 'base/resource/resource_bundle.cc', 293 'base/resource/resource_bundle.cc',
285 'base/resource/resource_bundle.h', 294 'base/resource/resource_bundle.h',
286 'base/resource/resource_bundle_android.cc', 295 'base/resource/resource_bundle_android.cc',
287 'base/resource/resource_bundle_auralinux.cc', 296 'base/resource/resource_bundle_auralinux.cc',
(...skipping 541 matching lines...) Expand 10 before | Expand all | Expand 10 after
829 'sources/': [ 838 'sources/': [
830 ['exclude', 'base/keycodes/keyboard_code_conversion_x.*'], 839 ['exclude', 'base/keycodes/keyboard_code_conversion_x.*'],
831 ['exclude', 'base/x/*'], 840 ['exclude', 'base/x/*'],
832 ], 841 ],
833 }], 842 }],
834 ['use_ozone==0', { 843 ['use_ozone==0', {
835 'sources!': [ 844 'sources!': [
836 'base/cursor/cursor_null.cc', 845 'base/cursor/cursor_null.cc',
837 'base/cursor/cursor_loader_null.cc', 846 'base/cursor/cursor_loader_null.cc',
838 'base/cursor/cursor_loader_null.h', 847 'base/cursor/cursor_loader_null.h',
839 ], 848 'base/touch/touch_device_linux.cc',
sadrul 2013/06/06 16:54:30 This file doesn't seem to exist?
rjkroege 2013/06/06 23:05:05 Done.
849 ],
840 }], 850 }],
841 ['toolkit_views==0', { 851 ['toolkit_views==0', {
842 'sources!': [ 852 'sources!': [
843 'base/events/event.cc', 853 'base/events/event.cc',
844 'base/events/event.h', 854 'base/events/event.h',
845 'base/events/event_dispatcher.cc', 855 'base/events/event_dispatcher.cc',
846 'base/events/event_dispatcher.h', 856 'base/events/event_dispatcher.h',
847 'base/events/event_handler.cc', 857 'base/events/event_handler.cc',
848 'base/events/event_handler.h', 858 'base/events/event_handler.h',
849 'base/events/event_target.cc', 859 'base/events/event_target.cc',
(...skipping 153 matching lines...) Expand 10 before | Expand all | Expand 10 after
1003 'xcode_settings': { 1013 'xcode_settings': {
1004 'GCC_SYMBOLS_PRIVATE_EXTERN': 'NO', 1014 'GCC_SYMBOLS_PRIVATE_EXTERN': 'NO',
1005 }, 1015 },
1006 }], 1016 }],
1007 ], 1017 ],
1008 }, 1018 },
1009 ], 1019 ],
1010 }], 1020 }],
1011 ], 1021 ],
1012 } 1022 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698