| 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 433 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 444 'renderer/extensions/chrome_v8_extension_handler.cc', | 444 'renderer/extensions/chrome_v8_extension_handler.cc', |
| 445 'renderer/extensions/context_menus_custom_bindings.cc', | 445 'renderer/extensions/context_menus_custom_bindings.cc', |
| 446 'renderer/extensions/file_browser_handler_custom_bindings.cc', | 446 'renderer/extensions/file_browser_handler_custom_bindings.cc', |
| 447 'renderer/extensions/page_actions_custom_bindings.cc', | 447 'renderer/extensions/page_actions_custom_bindings.cc', |
| 448 'renderer/extensions/render_view_observer_natives.cc', | 448 'renderer/extensions/render_view_observer_natives.cc', |
| 449 'renderer/extensions/send_request_natives.cc', | 449 'renderer/extensions/send_request_natives.cc', |
| 450 'renderer/extensions/tabs_custom_bindings.cc', | 450 'renderer/extensions/tabs_custom_bindings.cc', |
| 451 'renderer/extensions/tts_custom_bindings.cc', | 451 'renderer/extensions/tts_custom_bindings.cc', |
| 452 ], | 452 ], |
| 453 }], | 453 }], |
| 454 ['OS=="win" and target_arch=="ia32"', { |
| 455 'sources': [ |
| 456 # TODO(scottmg): This is a workaround for |
| 457 # http://crbug.com/348525 that affects VS2013 before Update 2. |
| 458 # This should be removed once Update 2 is released. |
| 459 '../build/win/ftol3.obj', |
| 460 ], |
| 461 }], |
| 454 ['OS=="win"', { | 462 ['OS=="win"', { |
| 455 'dependencies': [ | 463 'dependencies': [ |
| 456 '../chrome_elf/chrome_elf.gyp:chrome_elf', | 464 '../chrome_elf/chrome_elf.gyp:chrome_elf', |
| 457 ], | 465 ], |
| 458 'include_dirs': [ | 466 'include_dirs': [ |
| 459 '<(DEPTH)/third_party/wtl/include', | 467 '<(DEPTH)/third_party/wtl/include', |
| 460 ], | 468 ], |
| 461 'conditions': [ | 469 'conditions': [ |
| 462 ['win_use_allocator_shim==1', { | 470 ['win_use_allocator_shim==1', { |
| 463 'dependencies': [ | 471 'dependencies': [ |
| (...skipping 14 matching lines...) Expand all Loading... |
| 478 }], | 486 }], |
| 479 ['enable_printing!=0', { | 487 ['enable_printing!=0', { |
| 480 'dependencies': [ | 488 'dependencies': [ |
| 481 '../printing/printing.gyp:printing', | 489 '../printing/printing.gyp:printing', |
| 482 ], | 490 ], |
| 483 }], | 491 }], |
| 484 ], | 492 ], |
| 485 }, | 493 }, |
| 486 ], | 494 ], |
| 487 } | 495 } |
| OLD | NEW |