OLD | NEW |
1 # Copyright (c) 2009 The Chromium Authors. All rights reserved. | 1 # Copyright (c) 2009 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 'targets': [ | 6 'targets': [ |
7 { | 7 { |
8 'target_name': 'renderer', | 8 'target_name': 'renderer', |
9 'type': '<(library)', | 9 'type': '<(library)', |
10 'msvs_guid': '9301A569-5D2B-4D11-9332-B1E30AEACB8D', | 10 'msvs_guid': '9301A569-5D2B-4D11-9332-B1E30AEACB8D', |
(...skipping 166 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
177 ], | 177 ], |
178 }, | 178 }, |
179 'conditions': [ | 179 'conditions': [ |
180 ['disable_nacl!=1', { | 180 ['disable_nacl!=1', { |
181 'dependencies': [ | 181 'dependencies': [ |
182 'nacl', | 182 'nacl', |
183 ], | 183 ], |
184 }], | 184 }], |
185 # Linux-specific rules. | 185 # Linux-specific rules. |
186 ['OS=="linux"', { | 186 ['OS=="linux"', { |
| 187 'conditions': [ |
| 188 [ 'linux_use_tcmalloc==1', { |
| 189 'dependencies': [ |
| 190 '../base/allocator/allocator.gyp:allocator', |
| 191 ], |
| 192 }, |
| 193 ], |
| 194 ], |
187 'dependencies': [ | 195 'dependencies': [ |
188 '../build/linux/system.gyp:gtk', | 196 '../build/linux/system.gyp:gtk', |
189 '../sandbox/sandbox.gyp:sandbox', | 197 '../sandbox/sandbox.gyp:sandbox', |
190 ], | 198 ], |
191 }], | 199 }], |
192 # BSD-specific rules. | 200 # BSD-specific rules. |
193 ['OS=="openbsd" or OS=="freebsd"', { | 201 ['OS=="openbsd" or OS=="freebsd"', { |
194 'dependencies': [ | 202 'dependencies': [ |
195 '../build/linux/system.gyp:gtk', | 203 '../build/linux/system.gyp:gtk', |
196 ], | 204 ], |
(...skipping 26 matching lines...) Expand all Loading... |
223 ], | 231 ], |
224 }, | 232 }, |
225 ], | 233 ], |
226 } | 234 } |
227 | 235 |
228 # Local Variables: | 236 # Local Variables: |
229 # tab-width:2 | 237 # tab-width:2 |
230 # indent-tabs-mode:nil | 238 # indent-tabs-mode:nil |
231 # End: | 239 # End: |
232 # vim: set expandtab tabstop=2 shiftwidth=2: | 240 # vim: set expandtab tabstop=2 shiftwidth=2: |
OLD | NEW |