| 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 85 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 132 'browser/appcache/appcache_frontend_proxy.cc', | 133 'browser/appcache/appcache_frontend_proxy.cc', |
| 133 'browser/appcache/appcache_frontend_proxy.h', | 134 'browser/appcache/appcache_frontend_proxy.h', |
| 134 'browser/appcache/chrome_appcache_service.cc', | 135 'browser/appcache/chrome_appcache_service.cc', |
| 135 'browser/appcache/chrome_appcache_service.h', | 136 'browser/appcache/chrome_appcache_service.h', |
| 136 'browser/browser_child_process_host_impl.cc', | 137 'browser/browser_child_process_host_impl.cc', |
| 137 'browser/browser_child_process_host_impl.h', | 138 'browser/browser_child_process_host_impl.h', |
| 138 'browser/browser_main.cc', | 139 'browser/browser_main.cc', |
| 139 'browser/browser_main.h', | 140 'browser/browser_main.h', |
| 140 'browser/browser_main_loop.cc', | 141 'browser/browser_main_loop.cc', |
| 141 'browser/browser_main_loop.h', | 142 'browser/browser_main_loop.h', |
| 143 'browser/browser_main_runner.cc', |
| 142 'browser/browser_process_sub_thread.cc', | 144 'browser/browser_process_sub_thread.cc', |
| 143 'browser/browser_process_sub_thread.h', | 145 'browser/browser_process_sub_thread.h', |
| 144 'browser/browser_thread_impl.cc', | 146 'browser/browser_thread_impl.cc', |
| 145 'browser/browser_thread_impl.h', | 147 'browser/browser_thread_impl.h', |
| 146 'browser/browser_url_handler.cc', | 148 'browser/browser_url_handler.cc', |
| 147 'browser/browser_url_handler.h', | 149 'browser/browser_url_handler.h', |
| 148 'browser/browsing_instance.cc', | 150 'browser/browsing_instance.cc', |
| 149 'browser/browsing_instance.h', | 151 'browser/browsing_instance.h', |
| 150 'browser/cert_store.cc', | 152 'browser/cert_store.cc', |
| 151 'browser/cert_store.h', | 153 'browser/cert_store.h', |
| (...skipping 682 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 834 'ENABLE_JAVA_BRIDGE', | 836 'ENABLE_JAVA_BRIDGE', |
| 835 ], | 837 ], |
| 836 }, { | 838 }, { |
| 837 'sources/': [ | 839 'sources/': [ |
| 838 ['exclude', '^browser/renderer_host/java/'], | 840 ['exclude', '^browser/renderer_host/java/'], |
| 839 ], | 841 ], |
| 840 }], | 842 }], |
| 841 ], | 843 ], |
| 842 } | 844 } |
| 843 | 845 |
| OLD | NEW |