OLD | NEW |
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 Loading... |
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 Loading... |
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 } |
OLD | NEW |