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

Side by Side Diff: content/content_browser.gypi

Issue 8666013: Add a public content/ interface for intents. Use it. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 9 years 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) 2011 The Chromium Authors. All rights reserved. 1 # Copyright (c) 2011 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 '../crypto/crypto.gyp:crypto', 7 '../crypto/crypto.gyp:crypto',
8 '../net/net.gyp:net', 8 '../net/net.gyp:net',
9 '../net/net.gyp:http_server', 9 '../net/net.gyp:http_server',
10 '../ppapi/ppapi_internal.gyp:ppapi_proxy', 10 '../ppapi/ppapi_internal.gyp:ppapi_proxy',
(...skipping 12 matching lines...) Expand all
23 'include_dirs': [ 23 'include_dirs': [
24 '..', 24 '..',
25 '<(INTERMEDIATE_DIR)', 25 '<(INTERMEDIATE_DIR)',
26 ], 26 ],
27 'sources': [ 27 'sources': [
28 'public/browser/browser_main_parts.h', 28 'public/browser/browser_main_parts.h',
29 'public/browser/browser_thread.h', 29 'public/browser/browser_thread.h',
30 'public/browser/content_browser_client.h', 30 'public/browser/content_browser_client.h',
31 'public/browser/content_ipc_logging.h', 31 'public/browser/content_ipc_logging.h',
32 'public/browser/download_manager_delegate.h', 32 'public/browser/download_manager_delegate.h',
33 'public/browser/intents_host.h',
33 'public/browser/native_web_keyboard_event.h', 34 'public/browser/native_web_keyboard_event.h',
34 'public/browser/navigation_types.h', 35 'public/browser/navigation_types.h',
35 'public/browser/notification_details.h', 36 'public/browser/notification_details.h',
36 'public/browser/notification_observer.h', 37 'public/browser/notification_observer.h',
37 'public/browser/notification_registrar.cc', 38 'public/browser/notification_registrar.cc',
38 'public/browser/notification_registrar.h', 39 'public/browser/notification_registrar.h',
39 'public/browser/notification_service.h', 40 'public/browser/notification_service.h',
40 'public/browser/notification_source.h', 41 'public/browser/notification_source.h',
41 'public/browser/notification_types.h', 42 'public/browser/notification_types.h',
42 'public/browser/plugin_data_remover.h', 43 'public/browser/plugin_data_remover.h',
(...skipping 232 matching lines...) Expand 10 before | Expand all | Expand 10 after
275 'browser/in_process_webkit/indexed_db_transaction_callbacks.cc', 276 'browser/in_process_webkit/indexed_db_transaction_callbacks.cc',
276 'browser/in_process_webkit/indexed_db_transaction_callbacks.h', 277 'browser/in_process_webkit/indexed_db_transaction_callbacks.h',
277 'browser/in_process_webkit/session_storage_namespace.cc', 278 'browser/in_process_webkit/session_storage_namespace.cc',
278 'browser/in_process_webkit/session_storage_namespace.h', 279 'browser/in_process_webkit/session_storage_namespace.h',
279 'browser/in_process_webkit/webkit_context.cc', 280 'browser/in_process_webkit/webkit_context.cc',
280 'browser/in_process_webkit/webkit_context.h', 281 'browser/in_process_webkit/webkit_context.h',
281 'browser/in_process_webkit/webkit_thread.cc', 282 'browser/in_process_webkit/webkit_thread.cc',
282 'browser/in_process_webkit/webkit_thread.h', 283 'browser/in_process_webkit/webkit_thread.h',
283 'browser/intents/intent_injector.cc', 284 'browser/intents/intent_injector.cc',
284 'browser/intents/intent_injector.h', 285 'browser/intents/intent_injector.h',
286 'browser/intents/intents_host_impl.cc',
287 'browser/intents/intents_host_impl.h',
285 'browser/javascript_dialogs.h', 288 'browser/javascript_dialogs.h',
286 'browser/load_from_memory_cache_details.cc', 289 'browser/load_from_memory_cache_details.cc',
287 'browser/load_from_memory_cache_details.h', 290 'browser/load_from_memory_cache_details.h',
288 'browser/load_notification_details.h', 291 'browser/load_notification_details.h',
289 'browser/mach_broker_mac.cc', 292 'browser/mach_broker_mac.cc',
290 'browser/mach_broker_mac.h', 293 'browser/mach_broker_mac.h',
291 'browser/mime_registry_message_filter.cc', 294 'browser/mime_registry_message_filter.cc',
292 'browser/mime_registry_message_filter.h', 295 'browser/mime_registry_message_filter.h',
293 'browser/net/browser_online_state_observer.cc', 296 'browser/net/browser_online_state_observer.cc',
294 'browser/net/browser_online_state_observer.h', 297 'browser/net/browser_online_state_observer.h',
(...skipping 498 matching lines...) Expand 10 before | Expand all | Expand 10 after
793 'browser/renderer_host/java/java_bridge_dispatcher_host_manager.h', 796 'browser/renderer_host/java/java_bridge_dispatcher_host_manager.h',
794 'browser/renderer_host/java/java_bridge_dispatcher_host.cc', 797 'browser/renderer_host/java/java_bridge_dispatcher_host.cc',
795 'browser/renderer_host/java/java_bridge_dispatcher_host.h', 798 'browser/renderer_host/java/java_bridge_dispatcher_host.h',
796 'browser/renderer_host/java/java_method.cc', 799 'browser/renderer_host/java/java_method.cc',
797 'browser/renderer_host/java/java_method.h', 800 'browser/renderer_host/java/java_method.h',
798 ], 801 ],
799 }], 802 }],
800 ], 803 ],
801 } 804 }
802 805
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698