Chromium Code Reviews| 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 'targets': [ | 6 'targets': [ |
| 7 { | 7 { |
| 8 'target_name': 'renderer', | 8 'target_name': 'renderer', |
| 9 'type': 'static_library', | 9 'type': 'static_library', |
| 10 'variables': { 'enable_wexit_time_destructors': 1, }, | 10 'variables': { 'enable_wexit_time_destructors': 1, }, |
| (...skipping 227 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
| 238 }, { # safe_browsing==0 | 238 }, { # safe_browsing==0 |
| 239 'sources/': [ | 239 'sources/': [ |
| 240 ['exclude', '^renderer/safe_browsing/'], | 240 ['exclude', '^renderer/safe_browsing/'], |
| 241 ], | 241 ], |
| 242 }], | 242 }], |
| 243 ['OS=="mac"', { | 243 ['OS=="mac"', { |
| 244 'dependencies': [ | 244 'dependencies': [ |
| 245 '../third_party/mach_override/mach_override.gyp:mach_override', | 245 '../third_party/mach_override/mach_override.gyp:mach_override', |
| 246 ], | 246 ], |
| 247 }], | 247 }], |
| 248 ['enable_plugin_installation', { | |
| 249 'defines': [ | |
| 250 'ENABLE_PLUGIN_INSTALLATION', | |
|
jochen (gone - plz use gerrit)
2012/01/16 11:02:14
usually that would go into build/common.gypi
| |
| 251 ], | |
| 252 }], | |
| 248 ['toolkit_uses_gtk == 1', { | 253 ['toolkit_uses_gtk == 1', { |
| 249 'conditions': [ | 254 'conditions': [ |
| 250 [ 'linux_use_tcmalloc==1', { | 255 [ 'linux_use_tcmalloc==1', { |
| 251 'dependencies': [ | 256 'dependencies': [ |
| 252 '../base/allocator/allocator.gyp:allocator', | 257 '../base/allocator/allocator.gyp:allocator', |
| 253 ], | 258 ], |
| 254 }, | 259 }, |
| 255 ], | 260 ], |
| 256 ], | 261 ], |
| 257 'dependencies': [ | 262 'dependencies': [ |
| (...skipping 13 matching lines...) Expand all Loading... | |
| 271 'export_dependent_settings': [ | 276 'export_dependent_settings': [ |
| 272 '<(allocator_target)', | 277 '<(allocator_target)', |
| 273 ], | 278 ], |
| 274 }], | 279 }], |
| 275 ], | 280 ], |
| 276 }], | 281 }], |
| 277 ], | 282 ], |
| 278 }, | 283 }, |
| 279 ], | 284 ], |
| 280 } | 285 } |
| OLD | NEW |