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 48 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
59 ], | 59 ], |
60 'conditions': [ | 60 'conditions': [ |
61 ['use_aura==1', { | 61 ['use_aura==1', { |
62 'dependencies': [ | 62 'dependencies': [ |
63 '../../base/base.gyp:test_support_base', | 63 '../../base/base.gyp:test_support_base', |
64 '../aura/aura.gyp:aura_test_support', | 64 '../aura/aura.gyp:aura_test_support', |
65 '../compositor/compositor.gyp:compositor', | 65 '../compositor/compositor.gyp:compositor', |
66 '../compositor/compositor.gyp:compositor_test_support', | 66 '../compositor/compositor.gyp:compositor_test_support', |
67 ], | 67 ], |
68 }], | 68 }], |
| 69 # See http://crbug.com/162998#c4 for why this is needed. |
| 70 ['OS=="linux" and linux_use_tcmalloc==1', { |
| 71 'dependencies': [ |
| 72 '../../base/allocator/allocator.gyp:allocator', |
| 73 ], |
| 74 }], |
69 ], | 75 ], |
70 }, | 76 }, |
71 ], | 77 ], |
72 'conditions': [ | 78 'conditions': [ |
73 ['OS=="win"', { | 79 ['OS=="win"', { |
74 'targets': [ | 80 'targets': [ |
75 { | 81 { |
76 'target_name': 'snapshot_test_support', | 82 'target_name': 'snapshot_test_support', |
77 'type': 'static_library', | 83 'type': 'static_library', |
78 'sources': [ | 84 'sources': [ |
79 'test/snapshot_desktop.h', | 85 'test/snapshot_desktop.h', |
80 'test/snapshot_desktop_win.cc', | 86 'test/snapshot_desktop_win.cc', |
81 ], | 87 ], |
82 'dependencies': [ | 88 'dependencies': [ |
83 'snapshot', | 89 'snapshot', |
84 ], | 90 ], |
85 'include_dirs': [ | 91 'include_dirs': [ |
86 '../..', | 92 '../..', |
87 ], | 93 ], |
88 }, | 94 }, |
89 ], | 95 ], |
90 }], | 96 }], |
91 ], | 97 ], |
92 } | 98 } |
OLD | NEW |