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 19 matching lines...) Expand all Loading... |
30 'snapshot_async.h', | 30 'snapshot_async.h', |
31 'snapshot_aura.cc', | 31 'snapshot_aura.cc', |
32 'snapshot_export.h', | 32 'snapshot_export.h', |
33 'snapshot_ios.mm', | 33 'snapshot_ios.mm', |
34 'snapshot_mac.mm', | 34 'snapshot_mac.mm', |
35 ], | 35 ], |
36 'include_dirs': [ | 36 'include_dirs': [ |
37 '..', | 37 '..', |
38 ], | 38 ], |
39 'conditions': [ | 39 'conditions': [ |
| 40 ['OS=="android"', { |
| 41 'dependencies': [ |
| 42 '../android/ui_android.gyp:ui_android', |
| 43 ], |
| 44 }], |
40 ['use_aura==1 or OS=="android"', { | 45 ['use_aura==1 or OS=="android"', { |
41 'dependencies': [ | 46 'dependencies': [ |
42 '../../cc/cc.gyp:cc', | 47 '../../cc/cc.gyp:cc', |
43 '../../gpu/gpu.gyp:command_buffer_common', | 48 '../../gpu/gpu.gyp:command_buffer_common', |
44 ], | 49 ], |
45 }], | 50 }], |
46 ['use_aura!=1 and OS!="android"', { | 51 ['use_aura!=1 and OS!="android"', { |
47 'sources!': [ | 52 'sources!': [ |
48 'snapshot_async.cc', | 53 'snapshot_async.cc', |
49 'snapshot_async.h', | 54 'snapshot_async.h', |
(...skipping 38 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
88 # See http://crbug.com/162998#c4 for why this is needed. | 93 # See http://crbug.com/162998#c4 for why this is needed. |
89 ['OS=="linux" and use_allocator!="none"', { | 94 ['OS=="linux" and use_allocator!="none"', { |
90 'dependencies': [ | 95 'dependencies': [ |
91 '../../base/allocator/allocator.gyp:allocator', | 96 '../../base/allocator/allocator.gyp:allocator', |
92 ], | 97 ], |
93 }], | 98 }], |
94 ], | 99 ], |
95 }, | 100 }, |
96 ], | 101 ], |
97 } | 102 } |
OLD | NEW |