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

Side by Side Diff: views/views.gyp

Issue 3801011: touchui: Directly process key and mouse events. (Closed) Base URL: http://src.chromium.org/git/chromium.git
Patch Set: nit Created 10 years, 1 month 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
« no previous file with comments | « views/touchui/touch_event_dispatcher_gtk.cc ('k') | no next file » | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 # Copyright (c) 2010 The Chromium Authors. All rights reserved. 1 # Copyright (c) 2010 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 'target_defaults': { 9 'target_defaults': {
10 'sources/': [ 10 'sources/': [
(...skipping 14 matching lines...) Expand all
25 'sources/': [ 25 'sources/': [
26 ['exclude', '\\.mm?$'], 26 ['exclude', '\\.mm?$'],
27 ], 27 ],
28 }], 28 }],
29 ['OS=="win"', {'sources/': [ 29 ['OS=="win"', {'sources/': [
30 ['include', '_(win)\\.cc$'], 30 ['include', '_(win)\\.cc$'],
31 ['include', '/win/'], 31 ['include', '/win/'],
32 ['include', '/win_[^/]*\\.cc$'], 32 ['include', '/win_[^/]*\\.cc$'],
33 ]}], 33 ]}],
34 ['touchui==0', {'sources/': [ 34 ['touchui==0', {'sources/': [
35 ['exclude', 'event_x.cc$'],
35 ['exclude', 'touchui/'], 36 ['exclude', 'touchui/'],
36 ['exclude', '_(touch)\\.cc$'], 37 ['exclude', '_(touch)\\.cc$'],
37 ]}], 38 ]}],
38 ], 39 ],
39 }, 40 },
40 'targets': [ 41 'targets': [
41 { 42 {
42 'target_name': 'views', 43 'target_name': 'views',
43 'type': '<(library)', 44 'type': '<(library)',
44 'msvs_guid': '6F9258E5-294F-47B2-919D-17FFE7A8B751', 45 'msvs_guid': '6F9258E5-294F-47B2-919D-17FFE7A8B751',
(...skipping 183 matching lines...) Expand 10 before | Expand all | Expand 10 after
228 'controls/tree/tree_view.cc', 229 'controls/tree/tree_view.cc',
229 'controls/tree/tree_view.h', 230 'controls/tree/tree_view.h',
230 'drag_utils.cc', 231 'drag_utils.cc',
231 'drag_utils.h', 232 'drag_utils.h',
232 'drag_utils_gtk.cc', 233 'drag_utils_gtk.cc',
233 'drag_utils_win.cc', 234 'drag_utils_win.cc',
234 'event.cc', 235 'event.cc',
235 'event.h', 236 'event.h',
236 'event_gtk.cc', 237 'event_gtk.cc',
237 'event_win.cc', 238 'event_win.cc',
239 'event_x.cc',
238 'fill_layout.cc', 240 'fill_layout.cc',
239 'fill_layout.h', 241 'fill_layout.h',
240 'focus/accelerator_handler.h', 242 'focus/accelerator_handler.h',
241 'focus/accelerator_handler_gtk.cc', 243 'focus/accelerator_handler_gtk.cc',
242 'focus/accelerator_handler_touch.cc', 244 'focus/accelerator_handler_touch.cc',
243 'focus/accelerator_handler_win.cc', 245 'focus/accelerator_handler_win.cc',
244 'focus/external_focus_tracker.cc', 246 'focus/external_focus_tracker.cc',
245 'focus/external_focus_tracker.h', 247 'focus/external_focus_tracker.h',
246 'focus/focus_manager_gtk.cc', 248 'focus/focus_manager_gtk.cc',
247 'focus/focus_manager_win.cc', 249 'focus/focus_manager_win.cc',
(...skipping 14 matching lines...) Expand all
262 'painter.cc', 264 'painter.cc',
263 'painter.h', 265 'painter.h',
264 'repeat_controller.cc', 266 'repeat_controller.cc',
265 'repeat_controller.h', 267 'repeat_controller.h',
266 'screen.h', 268 'screen.h',
267 'screen_gtk.cc', 269 'screen_gtk.cc',
268 'screen_win.cc', 270 'screen_win.cc',
269 'standard_layout.h', 271 'standard_layout.h',
270 'touchui/gesture_manager.cc', 272 'touchui/gesture_manager.cc',
271 'touchui/gesture_manager.h', 273 'touchui/gesture_manager.h',
272 'touchui/touch_event_dispatcher_gtk.cc',
273 'touchui/touch_event_dispatcher_gtk.h',
274 'view.cc', 274 'view.cc',
275 'view.h', 275 'view.h',
276 'view_constants.cc', 276 'view_constants.cc',
277 'view_constants.h', 277 'view_constants.h',
278 'view_gtk.cc', 278 'view_gtk.cc',
279 'view_text_utils.cc', 279 'view_text_utils.cc',
280 'view_text_utils.h', 280 'view_text_utils.h',
281 'view_win.cc', 281 'view_win.cc',
282 'views_delegate.h', 282 'views_delegate.h',
283 'widget/aero_tooltip_manager.cc', 283 'widget/aero_tooltip_manager.cc',
(...skipping 234 matching lines...) Expand 10 before | Expand all | Expand 10 after
518 ], 518 ],
519 }, 519 },
520 ], 520 ],
521 } 521 }
522 522
523 # Local Variables: 523 # Local Variables:
524 # tab-width:2 524 # tab-width:2
525 # indent-tabs-mode:nil 525 # indent-tabs-mode:nil
526 # End: 526 # End:
527 # vim: set expandtab tabstop=2 shiftwidth=2: 527 # vim: set expandtab tabstop=2 shiftwidth=2:
OLDNEW
« no previous file with comments | « views/touchui/touch_event_dispatcher_gtk.cc ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698