| OLD | NEW |
| 1 # Copyright (c) 2011 The Chromium Authors. All rights reserved. | 1 # Copyright (c) 2011 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 169 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 180 ], | 180 ], |
| 181 'sources': [ | 181 'sources': [ |
| 182 'renderer/nacl_desc_wrapper_chrome.cc', | 182 'renderer/nacl_desc_wrapper_chrome.cc', |
| 183 ], | 183 ], |
| 184 }], | 184 }], |
| 185 ['OS=="mac"', { | 185 ['OS=="mac"', { |
| 186 'dependencies': [ | 186 'dependencies': [ |
| 187 '../third_party/mach_override/mach_override.gyp:mach_override', | 187 '../third_party/mach_override/mach_override.gyp:mach_override', |
| 188 ], | 188 ], |
| 189 }], | 189 }], |
| 190 ['OS=="linux"', { | 190 ['toolkit_uses_gtk==1', { |
| 191 'conditions': [ | 191 'conditions': [ |
| 192 [ 'linux_use_tcmalloc==1', { | 192 [ 'linux_use_tcmalloc==1', { |
| 193 'dependencies': [ | 193 'dependencies': [ |
| 194 '../base/allocator/allocator.gyp:allocator', | 194 '../base/allocator/allocator.gyp:allocator', |
| 195 ], | 195 ], |
| 196 }, | 196 }, |
| 197 ], | 197 ], |
| 198 ], | 198 ], |
| 199 'dependencies': [ | 199 'dependencies': [ |
| 200 '../build/linux/system.gyp:gtk', | 200 '../build/linux/system.gyp:gtk', |
| 201 '../sandbox/sandbox.gyp:sandbox', | 201 '../sandbox/sandbox.gyp:sandbox', |
| 202 ], | 202 ], |
| 203 }], | 203 }], |
| 204 ['OS=="openbsd" or OS=="freebsd"', { | |
| 205 'dependencies': [ | |
| 206 '../build/linux/system.gyp:gtk', | |
| 207 ], | |
| 208 }], | |
| 209 ['OS=="win"', { | 204 ['OS=="win"', { |
| 210 'include_dirs': [ | 205 'include_dirs': [ |
| 211 '<(DEPTH)/third_party/wtl/include', | 206 '<(DEPTH)/third_party/wtl/include', |
| 212 ], | 207 ], |
| 213 'conditions': [ | 208 'conditions': [ |
| 214 ['win_use_allocator_shim==1', { | 209 ['win_use_allocator_shim==1', { |
| 215 'dependencies': [ | 210 'dependencies': [ |
| 216 '<(allocator_target)', | 211 '<(allocator_target)', |
| 217 ], | 212 ], |
| 218 'export_dependent_settings': [ | 213 'export_dependent_settings': [ |
| (...skipping 49 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 268 ], | 263 ], |
| 269 }, | 264 }, |
| 270 ], | 265 ], |
| 271 } | 266 } |
| 272 | 267 |
| 273 # Local Variables: | 268 # Local Variables: |
| 274 # tab-width:2 | 269 # tab-width:2 |
| 275 # indent-tabs-mode:nil | 270 # indent-tabs-mode:nil |
| 276 # End: | 271 # End: |
| 277 # vim: set expandtab tabstop=2 shiftwidth=2: | 272 # vim: set expandtab tabstop=2 shiftwidth=2: |
| OLD | NEW |