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 142 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
153 'test/test_event_handler.cc', | 153 'test/test_event_handler.cc', |
154 'test/test_event_handler.h', | 154 'test/test_event_handler.h', |
155 'test/test_screen.cc', | 155 'test/test_screen.cc', |
156 'test/test_screen.h', | 156 'test/test_screen.h', |
157 'test/test_stacking_client.cc', | 157 'test/test_stacking_client.cc', |
158 'test/test_stacking_client.h', | 158 'test/test_stacking_client.h', |
159 'test/test_windows.cc', | 159 'test/test_windows.cc', |
160 'test/test_windows.h', | 160 'test/test_windows.h', |
161 'test/test_window_delegate.cc', | 161 'test/test_window_delegate.cc', |
162 'test/test_window_delegate.h', | 162 'test/test_window_delegate.h', |
| 163 'test/window_test_api.cc', |
| 164 'test/window_test_api.h', |
163 ], | 165 ], |
164 }, | 166 }, |
165 { | 167 { |
166 # We build a minimal set of resources required for aura_test_support. | 168 # We build a minimal set of resources required for aura_test_support. |
167 'target_name': 'aura_test_support_pak', | 169 'target_name': 'aura_test_support_pak', |
168 'type': 'none', | 170 'type': 'none', |
169 'dependencies': [ | 171 'dependencies': [ |
170 '<(DEPTH)/ui/ui.gyp:ui_resources', | 172 '<(DEPTH)/ui/ui.gyp:ui_resources', |
171 ], | 173 ], |
172 'variables': { | 174 'variables': { |
(...skipping 98 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
271 # osmesa GL implementation is used on linux. | 273 # osmesa GL implementation is used on linux. |
272 ['OS=="linux"', { | 274 ['OS=="linux"', { |
273 'dependencies': [ | 275 'dependencies': [ |
274 '<(DEPTH)/third_party/mesa/mesa.gyp:osmesa', | 276 '<(DEPTH)/third_party/mesa/mesa.gyp:osmesa', |
275 ], | 277 ], |
276 }], | 278 }], |
277 ], | 279 ], |
278 }, | 280 }, |
279 ], | 281 ], |
280 } | 282 } |
OLD | NEW |