| 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 10 matching lines...) Expand all Loading... |
| 21 '../webkit/support/webkit_support.gyp:webkit_strings', | 21 '../webkit/support/webkit_support.gyp:webkit_strings', |
| 22 ], | 22 ], |
| 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/download_manager_delegate.h', | 32 'public/browser/download_manager_delegate.h', |
| 32 'public/browser/native_web_keyboard_event.h', | 33 'public/browser/native_web_keyboard_event.h', |
| 33 'public/browser/navigation_types.h', | 34 'public/browser/navigation_types.h', |
| 34 'public/browser/notification_details.h', | 35 'public/browser/notification_details.h', |
| 35 'public/browser/notification_observer.h', | 36 'public/browser/notification_observer.h', |
| 36 'public/browser/notification_registrar.cc', | 37 'public/browser/notification_registrar.cc', |
| 37 'public/browser/notification_registrar.h', | 38 'public/browser/notification_registrar.h', |
| 38 'public/browser/notification_service.h', | 39 'public/browser/notification_service.h', |
| 39 'public/browser/notification_source.h', | 40 'public/browser/notification_source.h', |
| 40 'public/browser/notification_types.h', | 41 'public/browser/notification_types.h', |
| (...skipping 44 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 85 'browser/cancelable_request.cc', | 86 'browser/cancelable_request.cc', |
| 86 'browser/cancelable_request.h', | 87 'browser/cancelable_request.h', |
| 87 'browser/cert_store.cc', | 88 'browser/cert_store.cc', |
| 88 'browser/cert_store.h', | 89 'browser/cert_store.h', |
| 89 'browser/child_process_launcher.cc', | 90 'browser/child_process_launcher.cc', |
| 90 'browser/child_process_launcher.h', | 91 'browser/child_process_launcher.h', |
| 91 'browser/child_process_security_policy.cc', | 92 'browser/child_process_security_policy.cc', |
| 92 'browser/child_process_security_policy.h', | 93 'browser/child_process_security_policy.h', |
| 93 'browser/chrome_blob_storage_context.cc', | 94 'browser/chrome_blob_storage_context.cc', |
| 94 'browser/chrome_blob_storage_context.h', | 95 'browser/chrome_blob_storage_context.h', |
| 96 'browser/content_ipc_logging.cc', |
| 95 'browser/cross_site_request_manager.cc', | 97 'browser/cross_site_request_manager.cc', |
| 96 'browser/cross_site_request_manager.h', | 98 'browser/cross_site_request_manager.h', |
| 97 'browser/debugger/devtools_agent_host.cc', | 99 'browser/debugger/devtools_agent_host.cc', |
| 98 'browser/debugger/devtools_agent_host.h', | 100 'browser/debugger/devtools_agent_host.h', |
| 99 'browser/debugger/devtools_client_host.cc', | 101 'browser/debugger/devtools_client_host.cc', |
| 100 'browser/debugger/devtools_client_host.h', | 102 'browser/debugger/devtools_client_host.h', |
| 101 'browser/debugger/devtools_http_protocol_handler.cc', | 103 'browser/debugger/devtools_http_protocol_handler.cc', |
| 102 'browser/debugger/devtools_http_protocol_handler.h', | 104 'browser/debugger/devtools_http_protocol_handler.h', |
| 103 'browser/debugger/devtools_manager.cc', | 105 'browser/debugger/devtools_manager.cc', |
| 104 'browser/debugger/devtools_manager.h', | 106 'browser/debugger/devtools_manager.h', |
| (...skipping 684 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 789 'browser/renderer_host/java/java_bridge_dispatcher_host_manager.h', | 791 'browser/renderer_host/java/java_bridge_dispatcher_host_manager.h', |
| 790 'browser/renderer_host/java/java_bridge_dispatcher_host.cc', | 792 'browser/renderer_host/java/java_bridge_dispatcher_host.cc', |
| 791 'browser/renderer_host/java/java_bridge_dispatcher_host.h', | 793 'browser/renderer_host/java/java_bridge_dispatcher_host.h', |
| 792 'browser/renderer_host/java/java_method.cc', | 794 'browser/renderer_host/java/java_method.cc', |
| 793 'browser/renderer_host/java/java_method.h', | 795 'browser/renderer_host/java/java_method.h', |
| 794 ], | 796 ], |
| 795 }], | 797 }], |
| 796 ], | 798 ], |
| 797 } | 799 } |
| 798 | 800 |
| OLD | NEW |