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 { |
11 'target_name': 'aura', | 11 'target_name': 'aura', |
12 'type': '<(component)', | 12 'type': '<(component)', |
13 'dependencies': [ | 13 'dependencies': [ |
14 '../../base/base.gyp:base', | 14 '../../base/base.gyp:base', |
15 '../../base/base.gyp:base_i18n', | 15 '../../base/base.gyp:base_i18n', |
16 '../../base/third_party/dynamic_annotations/dynamic_annotations.gyp:dyna
mic_annotations', | 16 '../../base/third_party/dynamic_annotations/dynamic_annotations.gyp:dyna
mic_annotations', |
| 17 '../../cc/cc.gyp:cc', |
| 18 '../../gpu/gpu.gyp:gpu', |
17 '../../skia/skia.gyp:skia', | 19 '../../skia/skia.gyp:skia', |
18 '../compositor/compositor.gyp:compositor', | 20 '../compositor/compositor.gyp:compositor', |
19 '../ui.gyp:ui', | 21 '../ui.gyp:ui', |
20 '../ui.gyp:ui_resources', | 22 '../ui.gyp:ui_resources', |
21 ], | 23 ], |
22 'defines': [ | 24 'defines': [ |
23 'AURA_IMPLEMENTATION', | 25 'AURA_IMPLEMENTATION', |
24 ], | 26 ], |
25 'sources': [ | 27 'sources': [ |
26 'client/activation_change_observer.h', | 28 'client/activation_change_observer.h', |
(...skipping 264 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
291 ['OS=="linux" and linux_use_tcmalloc==1', { | 293 ['OS=="linux" and linux_use_tcmalloc==1', { |
292 'dependencies': [ | 294 'dependencies': [ |
293 # See http://crbug.com/162998#c4 for why this is needed. | 295 # See http://crbug.com/162998#c4 for why this is needed. |
294 '../../base/allocator/allocator.gyp:allocator', | 296 '../../base/allocator/allocator.gyp:allocator', |
295 ], | 297 ], |
296 }], | 298 }], |
297 ], | 299 ], |
298 }, | 300 }, |
299 ], | 301 ], |
300 } | 302 } |
OLD | NEW |