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