Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(649)

Side by Side Diff: chrome/chrome_renderer.gypi

Issue 186333002: Add ftol workaround for VS2013 (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 6 years, 9 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch | Annotate | Revision Log
« no previous file with comments | « chrome/chrome_exe.gypi ('k') | no next file » | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
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
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
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 }
OLDNEW
« no previous file with comments | « chrome/chrome_exe.gypi ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698