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

Side by Side Diff: chrome_frame/chrome_frame.gyp

Issue 9838102: Remove ChromeProxy and friends. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 8 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_frame/cfproxy_test.cc ('k') | chrome_frame/external_tab.h » ('j') | 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 'variables': { 6 'variables': {
7 'chromium_code': 1, 7 'chromium_code': 1,
8 8
9 'variables': { 9 'variables': {
10 'version_py_path': '../tools/build/version.py', 10 'version_py_path': '../tools/build/version.py',
(...skipping 194 matching lines...) Expand 10 before | Expand all | Expand 10 after
205 '../third_party/libxslt/libxslt.gyp:libxslt', 205 '../third_party/libxslt/libxslt.gyp:libxslt',
206 'chrome_frame_ie', 206 'chrome_frame_ie',
207 'chrome_frame_strings', 207 'chrome_frame_strings',
208 'chrome_frame_utils', 208 'chrome_frame_utils',
209 'chrome_tab_idl', 209 'chrome_tab_idl',
210 'locales/locales.gyp:*', 210 'locales/locales.gyp:*',
211 'npchrome_frame', 211 'npchrome_frame',
212 ], 212 ],
213 'sources': [ 213 'sources': [
214 '../base/test/test_suite.h', 214 '../base/test/test_suite.h',
215 'cfproxy_test.cc',
216 'external_tab_test.cc',
217 'test/automation_client_mock.cc', 215 'test/automation_client_mock.cc',
218 'test/automation_client_mock.h', 216 'test/automation_client_mock.h',
219 'test/chrome_frame_test_utils.cc', 217 'test/chrome_frame_test_utils.cc',
220 'test/chrome_frame_test_utils.h', 218 'test/chrome_frame_test_utils.h',
221 'test/chrome_frame_ui_test_utils.cc', 219 'test/chrome_frame_ui_test_utils.cc',
222 'test/chrome_frame_ui_test_utils.h', 220 'test/chrome_frame_ui_test_utils.h',
223 'test/chrome_frame_automation_mock.cc', 221 'test/chrome_frame_automation_mock.cc',
224 'test/chrome_frame_automation_mock.h', 222 'test/chrome_frame_automation_mock.h',
225 'test/delete_chrome_history_test.cc', 223 'test/delete_chrome_history_test.cc',
226 'test/dll_redirector_loading_test.cc', 224 'test/dll_redirector_loading_test.cc',
(...skipping 576 matching lines...) Expand 10 before | Expand all | Expand 10 after
803 'AdditionalOptions': [ 801 'AdditionalOptions': [
804 '/safeseh', 802 '/safeseh',
805 ], 803 ],
806 }, 804 },
807 }, 805 },
808 }, 806 },
809 { 807 {
810 'target_name': 'chrome_frame_common', 808 'target_name': 'chrome_frame_common',
811 'type': 'static_library', 809 'type': 'static_library',
812 'sources': [ 810 'sources': [
813 'cfproxy.h',
814 'cfproxy_private.h',
815 'cfproxy_factory.cc',
816 'cfproxy_proxy.cc',
817 'cfproxy_support.cc',
818 'chrome_frame_automation.h', 811 'chrome_frame_automation.h',
819 'chrome_frame_automation.cc', 812 'chrome_frame_automation.cc',
820 'chrome_frame_delegate.h', 813 'chrome_frame_delegate.h',
821 'chrome_frame_delegate.cc', 814 'chrome_frame_delegate.cc',
822 'chrome_frame_plugin.cc', 815 'chrome_frame_plugin.cc',
823 'chrome_frame_plugin.h', 816 'chrome_frame_plugin.h',
824 'chrome_launcher_utils.cc', 817 'chrome_launcher_utils.cc',
825 'chrome_launcher_utils.h', 818 'chrome_launcher_utils.h',
826 'custom_sync_call_context.cc', 819 'custom_sync_call_context.cc',
827 'custom_sync_call_context.h', 820 'custom_sync_call_context.h',
828 'external_tab.h',
829 'external_tab.cc',
830 'navigation_constraints.h', 821 'navigation_constraints.h',
831 'navigation_constraints.cc', 822 'navigation_constraints.cc',
832 'plugin_url_request.h', 823 'plugin_url_request.h',
833 'plugin_url_request.cc', 824 'plugin_url_request.cc',
834 'sync_msg_reply_dispatcher.h', 825 'sync_msg_reply_dispatcher.h',
835 'sync_msg_reply_dispatcher.cc', 826 'sync_msg_reply_dispatcher.cc',
836 'task_marshaller.h', 827 'task_marshaller.h',
837 'task_marshaller.cc', 828 'task_marshaller.cc',
838 ], 829 ],
839 'dependencies': [ 830 'dependencies': [
(...skipping 211 matching lines...) Expand 10 before | Expand all | Expand 10 after
1051 # Use outputs of this action as inputs for the main target build. 1042 # Use outputs of this action as inputs for the main target build.
1052 # Seems as a misnomer but makes this happy on Linux (scons). 1043 # Seems as a misnomer but makes this happy on Linux (scons).
1053 'process_outputs_as_sources': 1, 1044 'process_outputs_as_sources': 1,
1054 }, 1045 },
1055 ], 1046 ],
1056 }, 1047 },
1057 ], 1048 ],
1058 }, ], # 'coverage!=0' 1049 }, ], # 'coverage!=0'
1059 ], # 'conditions' 1050 ], # 'conditions'
1060 } 1051 }
OLDNEW
« no previous file with comments | « chrome_frame/cfproxy_test.cc ('k') | chrome_frame/external_tab.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698