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

Side by Side Diff: chrome_frame/chrome_frame.gyp

Issue 1589013: Switch renderer in Moniker patch... (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src/
Patch Set: '' Created 10 years, 8 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 # Keep the archive builder happy. 10 # Keep the archive builder happy.
(...skipping 136 matching lines...) Expand 10 before | Expand all | Expand 10 after
147 'include_dirs': [ 147 'include_dirs': [
148 # To allow including "chrome_tab.h" 148 # To allow including "chrome_tab.h"
149 '<(INTERMEDIATE_DIR)', 149 '<(INTERMEDIATE_DIR)',
150 ], 150 ],
151 'resource_include_dirs': [ 151 'resource_include_dirs': [
152 '<(INTERMEDIATE_DIR)', 152 '<(INTERMEDIATE_DIR)',
153 '<(SHARED_INTERMEDIATE_DIR)', 153 '<(SHARED_INTERMEDIATE_DIR)',
154 ], 154 ],
155 'conditions': [ 155 'conditions': [
156 ['OS=="win"', { 156 ['OS=="win"', {
157 'link_settings': {
158 'libraries': [
159 '-lshdocvw.lib',
160 ],
161 },
157 'msvs_settings': { 162 'msvs_settings': {
158 'VCLinkerTool': { 163 'VCLinkerTool': {
159 'DelayLoadDLLs': ['xpcom.dll', 'nspr4.dll'], 164 'DelayLoadDLLs': ['xpcom.dll', 'nspr4.dll', 'shdocvw.dll'],
160 }, 165 },
161 }, 166 },
162 'dependencies': [ 167 'dependencies': [
163 # TODO(slightlyoff): Get automation targets working on OS X 168 # TODO(slightlyoff): Get automation targets working on OS X
164 '../chrome/chrome.gyp:automation', 169 '../chrome/chrome.gyp:automation',
165 '../chrome/installer/installer.gyp:installer_util', 170 '../chrome/installer/installer.gyp:installer_util',
166 '../google_update/google_update.gyp:google_update', 171 '../google_update/google_update.gyp:google_update',
167 ], 172 ],
168 'configurations': { 173 'configurations': {
169 'Debug_Base': { 174 'Debug_Base': {
(...skipping 423 matching lines...) Expand 10 before | Expand all | Expand 10 after
593 'chrome_frame_utils', 598 'chrome_frame_utils',
594 '../chrome/chrome.gyp:common', 599 '../chrome/chrome.gyp:common',
595 '../chrome/chrome.gyp:utility', 600 '../chrome/chrome.gyp:utility',
596 '../build/temp_gyp/googleurl.gyp:googleurl', 601 '../build/temp_gyp/googleurl.gyp:googleurl',
597 602
598 ], 603 ],
599 'sources': [ 604 'sources': [
600 'bho.cc', 605 'bho.cc',
601 'bho.h', 606 'bho.h',
602 'bho.rgs', 607 'bho.rgs',
608 'bind_status_callback_impl.cc',
609 'bind_status_callback_impl.h',
603 'chrome_active_document.cc', 610 'chrome_active_document.cc',
604 'chrome_active_document.h', 611 'chrome_active_document.h',
605 'chrome_active_document.rgs', 612 'chrome_active_document.rgs',
606 'chrome_frame_activex.cc', 613 'chrome_frame_activex.cc',
607 'chrome_frame_activex.h', 614 'chrome_frame_activex.h',
608 'chrome_frame_activex.rgs', 615 'chrome_frame_activex.rgs',
609 'chrome_frame_activex_base.h', 616 'chrome_frame_activex_base.h',
610 'chrome_frame_histograms.cc', 617 'chrome_frame_histograms.cc',
611 'chrome_frame_histograms.h', 618 'chrome_frame_histograms.h',
612 'chrome_frame_reporting.cc', 619 'chrome_frame_reporting.cc',
(...skipping 13 matching lines...) Expand all
626 'find_dialog.h', 633 'find_dialog.h',
627 'function_stub.h', 634 'function_stub.h',
628 'http_negotiate.cc', 635 'http_negotiate.cc',
629 'function_stub.cc', 636 'function_stub.cc',
630 'http_negotiate.h', 637 'http_negotiate.h',
631 'iids.cc', 638 'iids.cc',
632 'in_place_menu.h', 639 'in_place_menu.h',
633 'ole_document_impl.h', 640 'ole_document_impl.h',
634 'protocol_sink_wrap.cc', 641 'protocol_sink_wrap.cc',
635 'protocol_sink_wrap.h', 642 'protocol_sink_wrap.h',
643 'stream_impl.cc',
644 'stream_impl.h',
636 'sync_msg_reply_dispatcher.cc', 645 'sync_msg_reply_dispatcher.cc',
637 'sync_msg_reply_dispatcher.h', 646 'sync_msg_reply_dispatcher.h',
638 'extra_system_apis.h', 647 'extra_system_apis.h',
639 'urlmon_bind_status_callback.h', 648 'urlmon_bind_status_callback.h',
640 'urlmon_bind_status_callback.cc', 649 'urlmon_bind_status_callback.cc',
641 'urlmon_moniker.h', 650 'urlmon_moniker.h',
642 'urlmon_moniker.cc', 651 'urlmon_moniker.cc',
643 'urlmon_url_request.cc', 652 'urlmon_url_request.cc',
644 'urlmon_url_request.h', 653 'urlmon_url_request.h',
645 'urlmon_url_request_private.h', 654 'urlmon_url_request_private.h',
(...skipping 140 matching lines...) Expand 10 before | Expand all | Expand 10 after
786 ], 795 ],
787 } 796 }
788 797
789 # vim: shiftwidth=2:et:ai:tabstop=2 798 # vim: shiftwidth=2:et:ai:tabstop=2
790 799
791 # Local Variables: 800 # Local Variables:
792 # tab-width:2 801 # tab-width:2
793 # indent-tabs-mode:nil 802 # indent-tabs-mode:nil
794 # End: 803 # End:
795 # vim: set expandtab tabstop=2 shiftwidth=2: 804 # vim: set expandtab tabstop=2 shiftwidth=2:
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698