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 '../../gpu/gpu.gyp:gpu', |
19 '../../skia/skia.gyp:skia', | 18 '../../skia/skia.gyp:skia', |
20 '../compositor/compositor.gyp:compositor', | 19 '../compositor/compositor.gyp:compositor', |
21 '../events/events.gyp:events', | 20 '../events/events.gyp:events', |
22 '../events/events.gyp:events_base', | 21 '../events/events.gyp:events_base', |
23 '../gfx/gfx.gyp:gfx', | 22 '../gfx/gfx.gyp:gfx', |
24 '../gfx/gfx.gyp:gfx_geometry', | 23 '../gfx/gfx.gyp:gfx_geometry', |
25 '../ui.gyp:ui', | 24 '../ui.gyp:ui', |
26 ], | 25 ], |
27 'defines': [ | 26 'defines': [ |
(...skipping 184 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
212 'sources': [ | 211 'sources': [ |
213 'demo/demo_main.cc', | 212 'demo/demo_main.cc', |
214 ], | 213 ], |
215 }, | 214 }, |
216 { | 215 { |
217 'target_name': 'aura_bench', | 216 'target_name': 'aura_bench', |
218 'type': 'executable', | 217 'type': 'executable', |
219 'dependencies': [ | 218 'dependencies': [ |
220 '../../base/base.gyp:base', | 219 '../../base/base.gyp:base', |
221 '../../base/base.gyp:base_i18n', | 220 '../../base/base.gyp:base_i18n', |
| 221 '../../cc/cc.gyp:cc', |
222 '../../skia/skia.gyp:skia', | 222 '../../skia/skia.gyp:skia', |
223 '../../third_party/icu/icu.gyp:icui18n', | 223 '../../third_party/icu/icu.gyp:icui18n', |
224 '../../third_party/icu/icu.gyp:icuuc', | 224 '../../third_party/icu/icu.gyp:icuuc', |
225 '../compositor/compositor.gyp:compositor', | 225 '../compositor/compositor.gyp:compositor', |
226 '../compositor/compositor.gyp:compositor_test_support', | 226 '../compositor/compositor.gyp:compositor_test_support', |
227 '../events/events.gyp:events', | 227 '../events/events.gyp:events', |
228 '../gfx/gfx.gyp:gfx', | 228 '../gfx/gfx.gyp:gfx', |
229 '../gfx/gfx.gyp:gfx_geometry', | 229 '../gfx/gfx.gyp:gfx_geometry', |
230 '../ui.gyp:ui', | 230 '../ui.gyp:ui', |
231 'aura', | 231 'aura', |
(...skipping 46 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
278 ['OS=="linux" and linux_use_tcmalloc==1', { | 278 ['OS=="linux" and linux_use_tcmalloc==1', { |
279 'dependencies': [ | 279 'dependencies': [ |
280 # See http://crbug.com/162998#c4 for why this is needed. | 280 # See http://crbug.com/162998#c4 for why this is needed. |
281 '../../base/allocator/allocator.gyp:allocator', | 281 '../../base/allocator/allocator.gyp:allocator', |
282 ], | 282 ], |
283 }], | 283 }], |
284 ], | 284 ], |
285 }, | 285 }, |
286 ], | 286 ], |
287 } | 287 } |
OLD | NEW |