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

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

Issue 9773024: This patch implements Chromium's Aura gesture recognizer in terms of utouch-grail and utouch-frame … (Closed) Base URL: https://src.chromium.org/svn/trunk/src/
Patch Set: Created 8 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
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 {
11 'target_name': 'aura', 11 'target_name': 'aura',
12 'type': '<(component)', 12 'type': '<(component)',
13 'dependencies': [ 13 'dependencies': [
14 '../../base/base.gyp:base', 14 '../../base/base.gyp:base',
15 '../../base/base.gyp:base_i18n', 15 '../../base/base.gyp:base_i18n',
16 '../../base/third_party/dynamic_annotations/dynamic_annotations.gyp:dyna mic_annotations', 16 '../../base/third_party/dynamic_annotations/dynamic_annotations.gyp:dyna mic_annotations',
17 '../../build/linux/system.gyp:frame',
18 '../../build/linux/system.gyp:grail',
17 '../../skia/skia.gyp:skia', 19 '../../skia/skia.gyp:skia',
18 '../gfx/compositor/compositor.gyp:compositor', 20 '../gfx/compositor/compositor.gyp:compositor',
19 '../ui.gyp:gfx_resources', 21 '../ui.gyp:gfx_resources',
20 '../ui.gyp:ui', 22 '../ui.gyp:ui',
21 '../ui.gyp:ui_resources', 23 '../ui.gyp:ui_resources',
22 ], 24 ],
23 'defines': [ 25 'defines': [
24 'AURA_IMPLEMENTATION', 26 'AURA_IMPLEMENTATION',
25 ], 27 ],
26 'sources': [ 28 'sources': [
(...skipping 29 matching lines...) Expand all
56 'env_observer.h', 58 'env_observer.h',
57 'event.cc', 59 'event.cc',
58 'event.h', 60 'event.h',
59 'event_filter.h', 61 'event_filter.h',
60 'event_mac.mm', 62 'event_mac.mm',
61 'event_mac.h', 63 'event_mac.h',
62 'focus_manager.h', 64 'focus_manager.h',
63 'gestures/gesture_configuration.cc', 65 'gestures/gesture_configuration.cc',
64 'gestures/gesture_configuration.h', 66 'gestures/gesture_configuration.h',
65 'gestures/gesture_recognizer.h', 67 'gestures/gesture_recognizer.h',
66 'gestures/gesture_recognizer_aura.cc', 68 » 'gestures/gesture_point.cc',»
rjkroege 2012/04/02 17:05:15 preserve the alphabetic order?
69 » 'gestures/gesture_point.h',»
70 » 'gestures/gesture_recognizer_aura.cc',
67 'gestures/gesture_recognizer_aura.h', 71 'gestures/gesture_recognizer_aura.h',
68 'gestures/gesture_point.cc', 72 'gestures/gesture_recognizer_grail.cc',
69 'gestures/gesture_point.h', 73 'gestures/gesture_recognizer_grail.h',
70 'gestures/velocity_calculator.cc', 74 » 'gestures/gesture_sequence.cc',»
71 'gestures/velocity_calculator.h', 75 » 'gestures/gesture_sequence.h',
72 'gestures/gesture_sequence.cc', 76 » 'gestures/velocity_calculator.cc',»
73 'gestures/gesture_sequence.h', 77 » 'gestures/velocity_calculator.h',»
74 'layout_manager.cc', 78 'layout_manager.cc',
75 'layout_manager.h', 79 'layout_manager.h',
76 'root_window_host.h', 80 'root_window_host.h',
77 'root_window_host_linux.cc', 81 'root_window_host_linux.cc',
78 'root_window_host_linux.h', 82 'root_window_host_linux.h',
79 'root_window_host_mac.h', 83 'root_window_host_mac.h',
80 'root_window_host_mac.mm', 84 'root_window_host_mac.mm',
81 'root_window_host_win.cc', 85 'root_window_host_win.cc',
82 'root_window_host_win.h', 86 'root_window_host_win.h',
83 'root_window_mac.h', 87 'root_window_mac.h',
84 'root_window_mac.mm', 88 'root_window_mac.mm',
85 'root_window_view_mac.h', 89 'root_window_view_mac.h',
86 'root_window_view_mac.mm', 90 'root_window_view_mac.mm',
87 'root_window.cc', 91 'root_window.cc',
88 'root_window.h', 92 'root_window.h',
89 'screen_aura.cc', 93 'screen_aura.cc',
90 'screen_aura.h', 94 'screen_aura.h',
91 'window.cc', 95 'window.cc',
92 'window.h', 96 'window.h',
93 'window_delegate.h', 97 'window_delegate.h',
94 'window_observer.h', 98 'window_observer.h',
95 ], 99 ],
96 'conditions': [ 100 'conditions': [
97 ['OS=="mac"', { 101 ['OS=="mac"', {
98 'sources/': [ 102 'sources/': [
99 ['exclude', 'client/dispatcher_client.cc'], 103 ['exclude', 'client/dispatcher_client.cc'],
100 ['exclude', 'client/dispatcher_client.h'], 104 ['exclude', 'client/dispatcher_client.h'],
101 ], 105 ],
102 }], 106 }],
107 ['use_utouch==1', {
108 'sources!': [
109 'gestures/gesture_point.cc',
110 'gestures/gesture_point.h',
111 'gestures/gesture_recognizer_aura.cc',
112 'gestures/gesture_recognizer_aura.h',
113 'gestures/gesture_sequence.cc',
114 'gestures/gesture_sequence.h',
115 'gestures/velocity_calculator.cc',
116 'gestures/velocity_calculator.h',
117 ],
118 'defines': [
119 'USE_UTOUCH',
120 ],
121 'dependencies': [
122 '../../build/linux/system.gyp:frame',
123 '../../build/linux/system.gyp:grail',
124 ],
125 }, { #use_utouch!=1
rjkroege 2012/04/02 17:05:15 shouldn't you be excluding the frame / grail depen
126 'sources!': [
127 'gestures/gesture_recognizer_grail.cc',
128 'gestures/gesture_recognizer_grail.h',
129 ],
130 }],
103 ], 131 ],
104 }, 132 },
105 { 133 {
106 'target_name': 'test_support_aura', 134 'target_name': 'test_support_aura',
107 'type': 'static_library', 135 'type': 'static_library',
108 'dependencies': [ 136 'dependencies': [
109 '../../skia/skia.gyp:skia', 137 '../../skia/skia.gyp:skia',
110 '../../testing/gtest.gyp:gtest', 138 '../../testing/gtest.gyp:gtest',
111 '../ui.gyp:ui', 139 '../ui.gyp:ui',
112 'aura', 140 'aura',
(...skipping 82 matching lines...) Expand 10 before | Expand all | Expand 10 after
195 # osmesa GL implementation is used on linux. 223 # osmesa GL implementation is used on linux.
196 ['OS=="linux"', { 224 ['OS=="linux"', {
197 'dependencies': [ 225 'dependencies': [
198 '<(DEPTH)/third_party/mesa/mesa.gyp:osmesa', 226 '<(DEPTH)/third_party/mesa/mesa.gyp:osmesa',
199 ], 227 ],
200 }], 228 }],
201 ], 229 ],
202 }, 230 },
203 ], 231 ],
204 } 232 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698