| 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 173 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 184 'test/test_window_delegate.cc', | 184 'test/test_window_delegate.cc', |
| 185 'test/test_window_delegate.h', | 185 'test/test_window_delegate.h', |
| 186 'test/ui_controls_factory_aura.h', | 186 'test/ui_controls_factory_aura.h', |
| 187 'test/ui_controls_factory_aurawin.cc', | 187 'test/ui_controls_factory_aurawin.cc', |
| 188 'test/ui_controls_factory_aurax11.cc', | 188 'test/ui_controls_factory_aurax11.cc', |
| 189 'test/ui_controls_factory_ozone.cc', | 189 'test/ui_controls_factory_ozone.cc', |
| 190 'test/window_event_dispatcher_test_api.cc', | 190 'test/window_event_dispatcher_test_api.cc', |
| 191 'test/window_event_dispatcher_test_api.h', | 191 'test/window_event_dispatcher_test_api.h', |
| 192 'test/window_test_api.cc', | 192 'test/window_test_api.cc', |
| 193 'test/window_test_api.h', | 193 'test/window_test_api.h', |
| 194 'test/x11_event_sender.cc', |
| 195 'test/x11_event_sender.h', |
| 194 ], | 196 ], |
| 195 # TODO(jschuh): crbug.com/167187 fix size_t to int truncations. | 197 # TODO(jschuh): crbug.com/167187 fix size_t to int truncations. |
| 196 'msvs_disabled_warnings': [ 4267, ], | 198 'msvs_disabled_warnings': [ 4267, ], |
| 197 }, | 199 }, |
| 198 { | 200 { |
| 199 'target_name': 'aura_demo', | 201 'target_name': 'aura_demo', |
| 200 'type': 'executable', | 202 'type': 'executable', |
| 201 'dependencies': [ | 203 'dependencies': [ |
| 202 '../../base/base.gyp:base', | 204 '../../base/base.gyp:base', |
| 203 '../../base/base.gyp:base_i18n', | 205 '../../base/base.gyp:base_i18n', |
| (...skipping 97 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 301 ['OS=="linux" and use_allocator!="none"', { | 303 ['OS=="linux" and use_allocator!="none"', { |
| 302 'dependencies': [ | 304 'dependencies': [ |
| 303 # See http://crbug.com/162998#c4 for why this is needed. | 305 # See http://crbug.com/162998#c4 for why this is needed. |
| 304 '../../base/allocator/allocator.gyp:allocator', | 306 '../../base/allocator/allocator.gyp:allocator', |
| 305 ], | 307 ], |
| 306 }], | 308 }], |
| 307 ], | 309 ], |
| 308 }, | 310 }, |
| 309 ], | 311 ], |
| 310 } | 312 } |
| OLD | NEW |