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 166 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
177 'test/test_screen.h', | 177 'test/test_screen.h', |
178 'test/test_window_tree_client.cc', | 178 'test/test_window_tree_client.cc', |
179 'test/test_window_tree_client.h', | 179 'test/test_window_tree_client.h', |
180 'test/test_windows.cc', | 180 'test/test_windows.cc', |
181 'test/test_windows.h', | 181 'test/test_windows.h', |
182 'test/test_window_delegate.cc', | 182 'test/test_window_delegate.cc', |
183 'test/test_window_delegate.h', | 183 'test/test_window_delegate.h', |
184 'test/ui_controls_factory_aura.h', | 184 'test/ui_controls_factory_aura.h', |
185 'test/ui_controls_factory_aurawin.cc', | 185 'test/ui_controls_factory_aurawin.cc', |
186 'test/ui_controls_factory_aurax11.cc', | 186 'test/ui_controls_factory_aurax11.cc', |
| 187 'test/ui_controls_factory_ozone.cc', |
187 'test/window_event_dispatcher_test_api.cc', | 188 'test/window_event_dispatcher_test_api.cc', |
188 'test/window_event_dispatcher_test_api.h', | 189 'test/window_event_dispatcher_test_api.h', |
189 'test/window_test_api.cc', | 190 'test/window_test_api.cc', |
190 'test/window_test_api.h', | 191 'test/window_test_api.h', |
191 ], | 192 ], |
192 # TODO(jschuh): crbug.com/167187 fix size_t to int truncations. | 193 # TODO(jschuh): crbug.com/167187 fix size_t to int truncations. |
193 'msvs_disabled_warnings': [ 4267, ], | 194 'msvs_disabled_warnings': [ 4267, ], |
194 }, | 195 }, |
195 { | 196 { |
196 'target_name': 'aura_demo', | 197 'target_name': 'aura_demo', |
(...skipping 101 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
298 ['OS=="linux" and use_allocator!="none"', { | 299 ['OS=="linux" and use_allocator!="none"', { |
299 'dependencies': [ | 300 'dependencies': [ |
300 # See http://crbug.com/162998#c4 for why this is needed. | 301 # See http://crbug.com/162998#c4 for why this is needed. |
301 '../../base/allocator/allocator.gyp:allocator', | 302 '../../base/allocator/allocator.gyp:allocator', |
302 ], | 303 ], |
303 }], | 304 }], |
304 ], | 305 ], |
305 }, | 306 }, |
306 ], | 307 ], |
307 } | 308 } |
OLD | NEW |