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

Side by Side Diff: ash/ash.gyp

Issue 165463002: event-rewrite: Clean up how events are rewritten. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: fix-debug Created 6 years, 10 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
« no previous file with comments | « ash/accelerators/accelerator_dispatcher.cc ('k') | ash/event_rewriter_delegate.h » ('j') | 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) 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 'grit_out_dir': '<(SHARED_INTERMEDIATE_DIR)/chrome', 8 'grit_out_dir': '<(SHARED_INTERMEDIATE_DIR)/chrome',
9 }, 9 },
10 'includes': [ 10 'includes': [
(...skipping 132 matching lines...) Expand 10 before | Expand all | Expand 10 after
143 'display/shared_display_edge_indicator.cc', 143 'display/shared_display_edge_indicator.cc',
144 'display/shared_display_edge_indicator.h', 144 'display/shared_display_edge_indicator.h',
145 'display/virtual_keyboard_window_controller.cc', 145 'display/virtual_keyboard_window_controller.cc',
146 'display/virtual_keyboard_window_controller.h', 146 'display/virtual_keyboard_window_controller.h',
147 'drag_drop/drag_drop_controller.cc', 147 'drag_drop/drag_drop_controller.cc',
148 'drag_drop/drag_drop_controller.h', 148 'drag_drop/drag_drop_controller.h',
149 'drag_drop/drag_drop_tracker.cc', 149 'drag_drop/drag_drop_tracker.cc',
150 'drag_drop/drag_drop_tracker.h', 150 'drag_drop/drag_drop_tracker.h',
151 'drag_drop/drag_image_view.cc', 151 'drag_drop/drag_image_view.cc',
152 'drag_drop/drag_image_view.h', 152 'drag_drop/drag_image_view.h',
153 'event_rewriter_delegate.h',
154 'first_run/desktop_cleaner.cc', 153 'first_run/desktop_cleaner.cc',
155 'first_run/desktop_cleaner.h', 154 'first_run/desktop_cleaner.h',
156 'first_run/first_run_helper.cc', 155 'first_run/first_run_helper.cc',
157 'first_run/first_run_helper.h', 156 'first_run/first_run_helper.h',
158 'first_run/first_run_helper_impl.cc', 157 'first_run/first_run_helper_impl.cc',
159 'first_run/first_run_helper_impl.h', 158 'first_run/first_run_helper_impl.h',
160 'focus_cycler.cc', 159 'focus_cycler.cc',
161 'focus_cycler.h', 160 'focus_cycler.h',
162 'gpu_support.h', 161 'gpu_support.h',
163 'gpu_support_stub.cc', 162 'gpu_support_stub.cc',
(...skipping 325 matching lines...) Expand 10 before | Expand all | Expand 10 after
489 'wm/dock/docked_window_resizer.cc', 488 'wm/dock/docked_window_resizer.cc',
490 'wm/dock/docked_window_resizer.h', 489 'wm/dock/docked_window_resizer.h',
491 'wm/drag_details.cc', 490 'wm/drag_details.cc',
492 'wm/drag_details.h', 491 'wm/drag_details.h',
493 'wm/drag_window_controller.cc', 492 'wm/drag_window_controller.cc',
494 'wm/drag_window_controller.h', 493 'wm/drag_window_controller.h',
495 'wm/drag_window_resizer.cc', 494 'wm/drag_window_resizer.cc',
496 'wm/drag_window_resizer.h', 495 'wm/drag_window_resizer.h',
497 'wm/event_client_impl.cc', 496 'wm/event_client_impl.cc',
498 'wm/event_client_impl.h', 497 'wm/event_client_impl.h',
499 'wm/event_rewriter_event_filter.cc',
500 'wm/event_rewriter_event_filter.h',
501 'wm/frame_border_hit_test_controller.cc', 498 'wm/frame_border_hit_test_controller.cc',
502 'wm/frame_border_hit_test_controller.h', 499 'wm/frame_border_hit_test_controller.h',
503 'wm/header_painter.cc', 500 'wm/header_painter.cc',
504 'wm/header_painter.h', 501 'wm/header_painter.h',
505 'wm/gestures/long_press_affordance_handler.cc', 502 'wm/gestures/long_press_affordance_handler.cc',
506 'wm/gestures/long_press_affordance_handler.h', 503 'wm/gestures/long_press_affordance_handler.h',
507 'wm/gestures/overview_gesture_handler.cc', 504 'wm/gestures/overview_gesture_handler.cc',
508 'wm/gestures/overview_gesture_handler.h', 505 'wm/gestures/overview_gesture_handler.h',
509 'wm/gestures/shelf_gesture_handler.cc', 506 'wm/gestures/shelf_gesture_handler.cc',
510 'wm/gestures/shelf_gesture_handler.h', 507 'wm/gestures/shelf_gesture_handler.h',
(...skipping 584 matching lines...) Expand 10 before | Expand all | Expand 10 after
1095 }, 1092 },
1096 }, 1093 },
1097 'dependencies': [ 1094 'dependencies': [
1098 '../sandbox/sandbox.gyp:sandbox', 1095 '../sandbox/sandbox.gyp:sandbox',
1099 ], 1096 ],
1100 }], 1097 }],
1101 ], 1098 ],
1102 }, 1099 },
1103 ], 1100 ],
1104 } 1101 }
OLDNEW
« no previous file with comments | « ash/accelerators/accelerator_dispatcher.cc ('k') | ash/event_rewriter_delegate.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698