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

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

Issue 9310031: Event smoothing in CrOS gesture recognizer. (Closed) Base URL: http://git.chromium.org/chromium/src.git@master
Patch Set: Minor naming fixes, comments. Created 8 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
« no previous file with comments | « no previous file | ui/aura/gestures/gesture_point.h » ('j') | ui/aura/gestures/gesture_point.cc » ('J')
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 }, 8 },
9 'targets': [ 9 'targets': [
10 { 10 {
(...skipping 33 matching lines...) Expand 10 before | Expand all | Expand 10 after
44 'client/visibility_client.h', 44 'client/visibility_client.h',
45 'client/window_move_client.cc', 45 'client/window_move_client.cc',
46 'client/window_move_client.h', 46 'client/window_move_client.h',
47 'client/window_types.h', 47 'client/window_types.h',
48 'cursor.h', 48 'cursor.h',
49 'gestures/gesture_recognizer.h', 49 'gestures/gesture_recognizer.h',
50 'gestures/gesture_recognizer_aura.cc', 50 'gestures/gesture_recognizer_aura.cc',
51 'gestures/gesture_recognizer_aura.h', 51 'gestures/gesture_recognizer_aura.h',
52 'gestures/gesture_point.cc', 52 'gestures/gesture_point.cc',
53 'gestures/gesture_point.h', 53 'gestures/gesture_point.h',
54 'gestures/velocity_calculator.cc',
55 'gestures/velocity_calculator.h',
54 'gestures/gesture_sequence.cc', 56 'gestures/gesture_sequence.cc',
55 'gestures/gesture_sequence.h', 57 'gestures/gesture_sequence.h',
56 'root_window_host.h', 58 'root_window_host.h',
57 'root_window_host_linux.cc', 59 'root_window_host_linux.cc',
58 'root_window_host_mac.h', 60 'root_window_host_mac.h',
59 'root_window_host_mac.mm', 61 'root_window_host_mac.mm',
60 'root_window_host_win.cc', 62 'root_window_host_win.cc',
61 'root_window_host_win.h', 63 'root_window_host_win.h',
62 'root_window_mac.h', 64 'root_window_mac.h',
63 'root_window_mac.mm', 65 'root_window_mac.mm',
(...skipping 84 matching lines...) Expand 10 before | Expand all | Expand 10 after
148 '../ui.gyp:ui', 150 '../ui.gyp:ui',
149 '../ui.gyp:ui_resources', 151 '../ui.gyp:ui_resources',
150 'test_support_aura', 152 'test_support_aura',
151 'aura', 153 'aura',
152 ], 154 ],
153 'include_dirs': [ 155 'include_dirs': [
154 '..', 156 '..',
155 ], 157 ],
156 'sources': [ 158 'sources': [
157 'gestures/gesture_recognizer_unittest.cc', 159 'gestures/gesture_recognizer_unittest.cc',
160 'gestures/velocity_calculator_unittest.cc',
158 'test/run_all_unittests.cc', 161 'test/run_all_unittests.cc',
159 'test/test_suite.cc', 162 'test/test_suite.cc',
160 'test/test_suite.h', 163 'test/test_suite.h',
161 'root_window_unittest.cc', 164 'root_window_unittest.cc',
162 'event_filter_unittest.cc', 165 'event_filter_unittest.cc',
163 'event_unittest.cc', 166 'event_unittest.cc',
164 'window_unittest.cc', 167 'window_unittest.cc',
165 '<(SHARED_INTERMEDIATE_DIR)/ui/gfx/gfx_resources.rc', 168 '<(SHARED_INTERMEDIATE_DIR)/ui/gfx/gfx_resources.rc',
166 '<(SHARED_INTERMEDIATE_DIR)/ui/ui_resources/ui_resources.rc', 169 '<(SHARED_INTERMEDIATE_DIR)/ui/ui_resources/ui_resources.rc',
167 ], 170 ],
168 'conditions': [ 171 'conditions': [
169 # osmesa GL implementation is used on linux. 172 # osmesa GL implementation is used on linux.
170 ['OS=="linux"', { 173 ['OS=="linux"', {
171 'dependencies': [ 174 'dependencies': [
172 '<(DEPTH)/third_party/mesa/mesa.gyp:osmesa', 175 '<(DEPTH)/third_party/mesa/mesa.gyp:osmesa',
173 ], 176 ],
174 }], 177 }],
175 ], 178 ],
176 }, 179 },
177 ], 180 ],
178 } 181 }
OLDNEW
« no previous file with comments | « no previous file | ui/aura/gestures/gesture_point.h » ('j') | ui/aura/gestures/gesture_point.cc » ('J')

Powered by Google App Engine
This is Rietveld 408576698