| 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 287 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 298 'dependencies': [ | 298 'dependencies': [ |
| 299 '../third_party/mach_override/mach_override.gyp:mach_override', | 299 '../third_party/mach_override/mach_override.gyp:mach_override', |
| 300 ], | 300 ], |
| 301 }], | 301 }], |
| 302 ['toolkit_uses_gtk == 1', { | 302 ['toolkit_uses_gtk == 1', { |
| 303 'dependencies': [ | 303 'dependencies': [ |
| 304 '../build/linux/system.gyp:gtk', | 304 '../build/linux/system.gyp:gtk', |
| 305 '../sandbox/sandbox.gyp:sandbox', | 305 '../sandbox/sandbox.gyp:sandbox', |
| 306 ], | 306 ], |
| 307 }], | 307 }], |
| 308 ['OS=="android"', { |
| 309 'defines': [ |
| 310 'ENABLE_MOBILE_YOUTUBE_PLUGIN', |
| 311 ], |
| 312 }], |
| 308 ['OS=="win"', { | 313 ['OS=="win"', { |
| 309 'include_dirs': [ | 314 'include_dirs': [ |
| 310 '<(DEPTH)/third_party/wtl/include', | 315 '<(DEPTH)/third_party/wtl/include', |
| 311 ], | 316 ], |
| 312 'conditions': [ | 317 'conditions': [ |
| 313 ['win_use_allocator_shim==1', { | 318 ['win_use_allocator_shim==1', { |
| 314 'dependencies': [ | 319 'dependencies': [ |
| 315 '<(allocator_target)', | 320 '<(allocator_target)', |
| 316 ], | 321 ], |
| 317 'export_dependent_settings': [ | 322 'export_dependent_settings': [ |
| 318 '<(allocator_target)', | 323 '<(allocator_target)', |
| 319 ], | 324 ], |
| 320 }], | 325 }], |
| 321 ], | 326 ], |
| 322 }], | 327 }], |
| 323 ], | 328 ], |
| 324 }, | 329 }, |
| 325 ], | 330 ], |
| 326 } | 331 } |
| OLD | NEW |