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

Side by Side Diff: chrome_frame/chrome_frame.gyp

Issue 1733021: Add an ExceptionBarrier around outbound calls to patched methods in IE. In so... (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src/
Patch Set: '' Created 10 years, 7 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
OLDNEW
1 # Copyright (c) 2010 The Chromium Authors. All rights reserved. 1 # Copyright (c) 2010 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 'variables': { 6 'variables': {
7 'chromium_code': 1, 7 'chromium_code': 1,
8 'xul_sdk_dir': '../third_party/xulrunner-sdk/<(OS)', 8 'xul_sdk_dir': '../third_party/xulrunner-sdk/<(OS)',
9 9
10 'variables': { 10 'variables': {
(...skipping 623 matching lines...) Expand 10 before | Expand all | Expand 10 after
634 'chrome_protocol.h', 634 'chrome_protocol.h',
635 'chrome_protocol.rgs', 635 'chrome_protocol.rgs',
636 'chrome_tab.h', 636 'chrome_tab.h',
637 'chrome_tab.idl', 637 'chrome_tab.idl',
638 'com_message_event.cc', 638 'com_message_event.cc',
639 'com_message_event.h', 639 'com_message_event.h',
640 'com_type_info_holder.cc', 640 'com_type_info_holder.cc',
641 'com_type_info_holder.h', 641 'com_type_info_holder.h',
642 'delete_chrome_history.cc', 642 'delete_chrome_history.cc',
643 'delete_chrome_history.h', 643 'delete_chrome_history.h',
644 'exception_barrier.cc',
645 'exception_barrier.h',
646 'exception_barrier_lowlevel.asm',
644 'find_dialog.cc', 647 'find_dialog.cc',
645 'find_dialog.h', 648 'find_dialog.h',
646 'function_stub.h', 649 'function_stub.h',
647 'http_negotiate.cc', 650 'http_negotiate.cc',
648 'function_stub.cc', 651 'function_stub.cc',
649 'http_negotiate.h', 652 'http_negotiate.h',
650 'iids.cc', 653 'iids.cc',
651 'in_place_menu.h', 654 'in_place_menu.h',
652 'module_utils.cc', 655 'module_utils.cc',
653 'module_utils.h', 656 'module_utils.h',
(...skipping 38 matching lines...) Expand 10 before | Expand all | Expand 10 after
692 # Installer 695 # Installer
693 '../chrome/installer/installer.gyp:installer_util', 696 '../chrome/installer/installer.gyp:installer_util',
694 '../google_update/google_update.gyp:google_update', 697 '../google_update/google_update.gyp:google_update',
695 # Crash Reporting 698 # Crash Reporting
696 'crash_reporting/crash_reporting.gyp:crash_report', 699 'crash_reporting/crash_reporting.gyp:crash_report',
697 'crash_reporting/crash_reporting.gyp:minidump_test', 700 'crash_reporting/crash_reporting.gyp:minidump_test',
698 'crash_reporting/crash_reporting.gyp:vectored_handler_tests', 701 'crash_reporting/crash_reporting.gyp:vectored_handler_tests',
699 ], 702 ],
700 },], 703 },],
701 ], 704 ],
705 'rules': [
706 {
707 'rule_name': 'Assemble',
708 'extension': 'asm',
709 'inputs': [],
710 'outputs': [
711 '<(INTERMEDIATE_DIR)/<(RULE_INPUT_ROOT).obj',
712 ],
713 'action': [
714 'ml',
715 '/safeseh',
716 '/Fo', '<(INTERMEDIATE_DIR)\<(RULE_INPUT_ROOT).obj',
717 '/c', '<(RULE_INPUT_PATH)',
718 ],
719 'process_outputs_as_sources': 0,
720 'message': 'Assembling <(RULE_INPUT_PATH) to <(INTERMEDIATE_DIR)\<(RUL E_INPUT_ROOT).obj.',
721 },
722 ],
723 'msvs_settings': {
724 'VCLinkerTool': {
725 'AdditionalOptions': [
726 '/safeseh',
727 ],
728 },
729 },
702 }, 730 },
703 { 731 {
704 'target_name': 'npchrome_frame', 732 'target_name': 'npchrome_frame',
705 'type': 'shared_library', 733 'type': 'shared_library',
706 'msvs_guid': 'E3DE7E63-D3B6-4A9F-BCC4-5C8169E9C9F2', 734 'msvs_guid': 'E3DE7E63-D3B6-4A9F-BCC4-5C8169E9C9F2',
707 'dependencies': [ 735 'dependencies': [
708 'base_noicu', 736 'base_noicu',
709 'chrome_frame_ie', 737 'chrome_frame_ie',
710 'chrome_frame_npapi', 738 'chrome_frame_npapi',
711 'chrome_frame_strings', 739 'chrome_frame_strings',
(...skipping 114 matching lines...) Expand 10 before | Expand all | Expand 10 after
826 ], 854 ],
827 } 855 }
828 856
829 # vim: shiftwidth=2:et:ai:tabstop=2 857 # vim: shiftwidth=2:et:ai:tabstop=2
830 858
831 # Local Variables: 859 # Local Variables:
832 # tab-width:2 860 # tab-width:2
833 # indent-tabs-mode:nil 861 # indent-tabs-mode:nil
834 # End: 862 # End:
835 # vim: set expandtab tabstop=2 shiftwidth=2: 863 # vim: set expandtab tabstop=2 shiftwidth=2:
OLDNEW
« no previous file with comments | « no previous file | chrome_frame/chrome_frame_reporting.cc » ('j') | chrome_frame/crash_reporting/crash_report.h » ('J')

Powered by Google App Engine
This is Rietveld 408576698