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

Side by Side Diff: content/content_browser.gypi

Issue 9375017: Support sharing of ContentMain and BrowserMain code with embedded use cases (try #3). (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src/
Patch Set: '' Created 8 years, 10 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 | « content/content_app.gypi ('k') | content/public/app/content_main.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 'dependencies': [ 6 'dependencies': [
7 'browser/debugger/devtools_resources.gyp:devtools_resources', 7 'browser/debugger/devtools_resources.gyp:devtools_resources',
8 '../base/base.gyp:base_static', 8 '../base/base.gyp:base_static',
9 '../crypto/crypto.gyp:crypto', 9 '../crypto/crypto.gyp:crypto',
10 '../net/net.gyp:http_server', 10 '../net/net.gyp:http_server',
(...skipping 16 matching lines...) Expand all
27 ], 27 ],
28 'sources': [ 28 'sources': [
29 'public/browser/access_token_store.h', 29 'public/browser/access_token_store.h',
30 'public/browser/browser_child_process_host.h', 30 'public/browser/browser_child_process_host.h',
31 'public/browser/browser_child_process_host_delegate.cc', 31 'public/browser/browser_child_process_host_delegate.cc',
32 'public/browser/browser_child_process_host_delegate.h', 32 'public/browser/browser_child_process_host_delegate.h',
33 'public/browser/browser_child_process_host_iterator.cc', 33 'public/browser/browser_child_process_host_iterator.cc',
34 'public/browser/browser_child_process_host_iterator.h', 34 'public/browser/browser_child_process_host_iterator.h',
35 'public/browser/browser_context.h', 35 'public/browser/browser_context.h',
36 'public/browser/browser_main_parts.h', 36 'public/browser/browser_main_parts.h',
37 'public/browser/browser_main_runner.h',
37 'public/browser/browser_message_filter.cc', 38 'public/browser/browser_message_filter.cc',
38 'public/browser/browser_message_filter.h', 39 'public/browser/browser_message_filter.h',
39 'public/browser/browser_shutdown.h', 40 'public/browser/browser_shutdown.h',
40 'public/browser/browser_thread.h', 41 'public/browser/browser_thread.h',
41 'public/browser/browser_thread_delegate.h', 42 'public/browser/browser_thread_delegate.h',
42 'public/browser/child_process_data.h', 43 'public/browser/child_process_data.h',
43 'public/browser/child_process_security_policy.h', 44 'public/browser/child_process_security_policy.h',
44 'public/browser/content_browser_client.h', 45 'public/browser/content_browser_client.h',
45 'public/browser/content_ipc_logging.h', 46 'public/browser/content_ipc_logging.h',
46 'public/browser/devtools_agent_host_registry.h', 47 'public/browser/devtools_agent_host_registry.h',
(...skipping 93 matching lines...) Expand 10 before | Expand all | Expand 10 after
140 'browser/appcache/appcache_frontend_proxy.cc', 141 'browser/appcache/appcache_frontend_proxy.cc',
141 'browser/appcache/appcache_frontend_proxy.h', 142 'browser/appcache/appcache_frontend_proxy.h',
142 'browser/appcache/chrome_appcache_service.cc', 143 'browser/appcache/chrome_appcache_service.cc',
143 'browser/appcache/chrome_appcache_service.h', 144 'browser/appcache/chrome_appcache_service.h',
144 'browser/browser_child_process_host_impl.cc', 145 'browser/browser_child_process_host_impl.cc',
145 'browser/browser_child_process_host_impl.h', 146 'browser/browser_child_process_host_impl.h',
146 'browser/browser_main.cc', 147 'browser/browser_main.cc',
147 'browser/browser_main.h', 148 'browser/browser_main.h',
148 'browser/browser_main_loop.cc', 149 'browser/browser_main_loop.cc',
149 'browser/browser_main_loop.h', 150 'browser/browser_main_loop.h',
151 'browser/browser_main_runner.cc',
150 'browser/browser_process_sub_thread.cc', 152 'browser/browser_process_sub_thread.cc',
151 'browser/browser_process_sub_thread.h', 153 'browser/browser_process_sub_thread.h',
152 'browser/browser_thread_impl.cc', 154 'browser/browser_thread_impl.cc',
153 'browser/browser_thread_impl.h', 155 'browser/browser_thread_impl.h',
154 'browser/browser_url_handler.cc', 156 'browser/browser_url_handler.cc',
155 'browser/browser_url_handler.h', 157 'browser/browser_url_handler.h',
156 'browser/browsing_instance.cc', 158 'browser/browsing_instance.cc',
157 'browser/browsing_instance.h', 159 'browser/browsing_instance.h',
158 'browser/cert_store.cc', 160 'browser/cert_store.cc',
159 'browser/cert_store.h', 161 'browser/cert_store.h',
(...skipping 691 matching lines...) Expand 10 before | Expand all | Expand 10 after
851 'ENABLE_JAVA_BRIDGE', 853 'ENABLE_JAVA_BRIDGE',
852 ], 854 ],
853 }, { 855 }, {
854 'sources/': [ 856 'sources/': [
855 ['exclude', '^browser/renderer_host/java/'], 857 ['exclude', '^browser/renderer_host/java/'],
856 ], 858 ],
857 }], 859 }],
858 ], 860 ],
859 } 861 }
860 862
OLDNEW
« no previous file with comments | « content/content_app.gypi ('k') | content/public/app/content_main.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698