| OLD | NEW |
| 1 # Copyright 2014 The Chromium Authors. All rights reserved. | 1 # Copyright 2014 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 import("//build/config/ui.gni") | 5 import("//build/config/ui.gni") |
| 6 | 6 |
| 7 # See //content/BUILD.gn for how this works. | 7 # See //content/BUILD.gn for how this works. |
| 8 group("browser") { | 8 group("browser") { |
| 9 if (is_component_build) { | 9 if (is_component_build) { |
| 10 public_deps = [ | 10 public_deps = [ |
| (...skipping 53 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 64 "browser_message_filter.h", | 64 "browser_message_filter.h", |
| 65 "browser_plugin_guest_delegate.cc", | 65 "browser_plugin_guest_delegate.cc", |
| 66 "browser_plugin_guest_delegate.h", | 66 "browser_plugin_guest_delegate.h", |
| 67 "browser_plugin_guest_manager.cc", | 67 "browser_plugin_guest_manager.cc", |
| 68 "browser_plugin_guest_manager.h", | 68 "browser_plugin_guest_manager.h", |
| 69 "browser_ppapi_host.h", | 69 "browser_ppapi_host.h", |
| 70 "browser_thread.h", | 70 "browser_thread.h", |
| 71 "browser_thread_delegate.h", | 71 "browser_thread_delegate.h", |
| 72 "browser_url_handler.h", | 72 "browser_url_handler.h", |
| 73 "browsing_data_filter_builder.h", | 73 "browsing_data_filter_builder.h", |
| 74 "browsing_data_remover.h", |
| 75 "browsing_data_remover_delegate.h", |
| 74 "cache_storage_context.h", | 76 "cache_storage_context.h", |
| 75 "cache_storage_usage_info.h", | 77 "cache_storage_usage_info.h", |
| 76 "cdm_registry.h", | 78 "cdm_registry.h", |
| 77 "certificate_request_result_type.h", | 79 "certificate_request_result_type.h", |
| 78 "child_process_data.h", | 80 "child_process_data.h", |
| 79 "child_process_security_policy.h", | 81 "child_process_security_policy.h", |
| 80 "client_certificate_delegate.h", | 82 "client_certificate_delegate.h", |
| 81 "color_chooser.h", | 83 "color_chooser.h", |
| 82 "content_browser_client.cc", | 84 "content_browser_client.cc", |
| 83 "content_browser_client.h", | 85 "content_browser_client.h", |
| (...skipping 250 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 334 | 336 |
| 335 if (use_aura) { | 337 if (use_aura) { |
| 336 sources -= [ "context_factory.h" ] | 338 sources -= [ "context_factory.h" ] |
| 337 deps += [ "//ui/aura" ] | 339 deps += [ "//ui/aura" ] |
| 338 } | 340 } |
| 339 | 341 |
| 340 if (!is_android) { | 342 if (!is_android) { |
| 341 sources += [ "devtools_frontend_host.h" ] | 343 sources += [ "devtools_frontend_host.h" ] |
| 342 } | 344 } |
| 343 } | 345 } |
| OLD | NEW |