| OLD | NEW |
| 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 Loading... |
| 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/content_browser_client.h', | 44 'public/browser/content_browser_client.h', |
| 44 'public/browser/content_ipc_logging.h', | 45 'public/browser/content_ipc_logging.h', |
| 45 'public/browser/devtools_agent_host_registry.h', | 46 'public/browser/devtools_agent_host_registry.h', |
| 46 'public/browser/devtools_client_host.h', | 47 'public/browser/devtools_client_host.h', |
| (...skipping 91 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 138 'browser/appcache/appcache_frontend_proxy.cc', | 139 'browser/appcache/appcache_frontend_proxy.cc', |
| 139 'browser/appcache/appcache_frontend_proxy.h', | 140 'browser/appcache/appcache_frontend_proxy.h', |
| 140 'browser/appcache/chrome_appcache_service.cc', | 141 'browser/appcache/chrome_appcache_service.cc', |
| 141 'browser/appcache/chrome_appcache_service.h', | 142 'browser/appcache/chrome_appcache_service.h', |
| 142 'browser/browser_child_process_host_impl.cc', | 143 'browser/browser_child_process_host_impl.cc', |
| 143 'browser/browser_child_process_host_impl.h', | 144 'browser/browser_child_process_host_impl.h', |
| 144 'browser/browser_main.cc', | 145 'browser/browser_main.cc', |
| 145 'browser/browser_main.h', | 146 'browser/browser_main.h', |
| 146 'browser/browser_main_loop.cc', | 147 'browser/browser_main_loop.cc', |
| 147 'browser/browser_main_loop.h', | 148 'browser/browser_main_loop.h', |
| 149 'browser/browser_main_runner.cc', |
| 148 'browser/browser_process_sub_thread.cc', | 150 'browser/browser_process_sub_thread.cc', |
| 149 'browser/browser_process_sub_thread.h', | 151 'browser/browser_process_sub_thread.h', |
| 150 'browser/browser_thread_impl.cc', | 152 'browser/browser_thread_impl.cc', |
| 151 'browser/browser_thread_impl.h', | 153 'browser/browser_thread_impl.h', |
| 152 'browser/browser_url_handler.cc', | 154 'browser/browser_url_handler.cc', |
| 153 'browser/browser_url_handler.h', | 155 'browser/browser_url_handler.h', |
| 154 'browser/browsing_instance.cc', | 156 'browser/browsing_instance.cc', |
| 155 'browser/browsing_instance.h', | 157 'browser/browsing_instance.h', |
| 156 'browser/cert_store.cc', | 158 'browser/cert_store.cc', |
| 157 'browser/cert_store.h', | 159 'browser/cert_store.h', |
| (...skipping 684 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 842 'ENABLE_JAVA_BRIDGE', | 844 'ENABLE_JAVA_BRIDGE', |
| 843 ], | 845 ], |
| 844 }, { | 846 }, { |
| 845 'sources/': [ | 847 'sources/': [ |
| 846 ['exclude', '^browser/renderer_host/java/'], | 848 ['exclude', '^browser/renderer_host/java/'], |
| 847 ], | 849 ], |
| 848 }], | 850 }], |
| 849 ], | 851 ], |
| 850 } | 852 } |
| 851 | 853 |
| OLD | NEW |