OLD | NEW |
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 15 matching lines...) Expand all Loading... |
26 '<(INTERMEDIATE_DIR)', | 26 '<(INTERMEDIATE_DIR)', |
27 ], | 27 ], |
28 'sources': [ | 28 'sources': [ |
29 'public/browser/browser_main_parts.h', | 29 'public/browser/browser_main_parts.h', |
30 'public/browser/browser_shutdown.h', | 30 'public/browser/browser_shutdown.h', |
31 'public/browser/browser_thread.h', | 31 'public/browser/browser_thread.h', |
32 'public/browser/browser_thread_delegate.h', | 32 'public/browser/browser_thread_delegate.h', |
33 'public/browser/content_browser_client.h', | 33 'public/browser/content_browser_client.h', |
34 'public/browser/content_ipc_logging.h', | 34 'public/browser/content_ipc_logging.h', |
35 'public/browser/download_manager_delegate.h', | 35 'public/browser/download_manager_delegate.h', |
| 36 'public/browser/intents_host.h', |
36 'public/browser/native_web_keyboard_event.h', | 37 'public/browser/native_web_keyboard_event.h', |
37 'public/browser/navigation_types.h', | 38 'public/browser/navigation_types.h', |
38 'public/browser/notification_details.h', | 39 'public/browser/notification_details.h', |
39 'public/browser/notification_observer.h', | 40 'public/browser/notification_observer.h', |
40 'public/browser/notification_registrar.cc', | 41 'public/browser/notification_registrar.cc', |
41 'public/browser/notification_registrar.h', | 42 'public/browser/notification_registrar.h', |
42 'public/browser/notification_service.h', | 43 'public/browser/notification_service.h', |
43 'public/browser/notification_source.h', | 44 'public/browser/notification_source.h', |
44 'public/browser/notification_types.h', | 45 'public/browser/notification_types.h', |
45 'public/browser/plugin_data_remover.h', | 46 'public/browser/plugin_data_remover.h', |
(...skipping 241 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
287 'browser/in_process_webkit/indexed_db_transaction_callbacks.cc', | 288 'browser/in_process_webkit/indexed_db_transaction_callbacks.cc', |
288 'browser/in_process_webkit/indexed_db_transaction_callbacks.h', | 289 'browser/in_process_webkit/indexed_db_transaction_callbacks.h', |
289 'browser/in_process_webkit/session_storage_namespace.cc', | 290 'browser/in_process_webkit/session_storage_namespace.cc', |
290 'browser/in_process_webkit/session_storage_namespace.h', | 291 'browser/in_process_webkit/session_storage_namespace.h', |
291 'browser/in_process_webkit/webkit_context.cc', | 292 'browser/in_process_webkit/webkit_context.cc', |
292 'browser/in_process_webkit/webkit_context.h', | 293 'browser/in_process_webkit/webkit_context.h', |
293 'browser/in_process_webkit/webkit_thread.cc', | 294 'browser/in_process_webkit/webkit_thread.cc', |
294 'browser/in_process_webkit/webkit_thread.h', | 295 'browser/in_process_webkit/webkit_thread.h', |
295 'browser/intents/intent_injector.cc', | 296 'browser/intents/intent_injector.cc', |
296 'browser/intents/intent_injector.h', | 297 'browser/intents/intent_injector.h', |
| 298 'browser/intents/intents_host_impl.cc', |
| 299 'browser/intents/intents_host_impl.h', |
297 'browser/javascript_dialogs.h', | 300 'browser/javascript_dialogs.h', |
298 'browser/load_from_memory_cache_details.cc', | 301 'browser/load_from_memory_cache_details.cc', |
299 'browser/load_from_memory_cache_details.h', | 302 'browser/load_from_memory_cache_details.h', |
300 'browser/load_notification_details.h', | 303 'browser/load_notification_details.h', |
301 'browser/mach_broker_mac.cc', | 304 'browser/mach_broker_mac.cc', |
302 'browser/mach_broker_mac.h', | 305 'browser/mach_broker_mac.h', |
303 'browser/mime_registry_message_filter.cc', | 306 'browser/mime_registry_message_filter.cc', |
304 'browser/mime_registry_message_filter.h', | 307 'browser/mime_registry_message_filter.h', |
305 'browser/net/browser_online_state_observer.cc', | 308 'browser/net/browser_online_state_observer.cc', |
306 'browser/net/browser_online_state_observer.h', | 309 'browser/net/browser_online_state_observer.h', |
(...skipping 475 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
782 'ENABLE_JAVA_BRIDGE', | 785 'ENABLE_JAVA_BRIDGE', |
783 ], | 786 ], |
784 }, { | 787 }, { |
785 'sources/': [ | 788 'sources/': [ |
786 ['exclude', '^browser/renderer_host/java/'], | 789 ['exclude', '^browser/renderer_host/java/'], |
787 ], | 790 ], |
788 }], | 791 }], |
789 ], | 792 ], |
790 } | 793 } |
791 | 794 |
OLD | NEW |