| 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 54 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 65 "browser_message_filter.h", | 65 "browser_message_filter.h", |
| 66 "browser_plugin_guest_delegate.cc", | 66 "browser_plugin_guest_delegate.cc", |
| 67 "browser_plugin_guest_delegate.h", | 67 "browser_plugin_guest_delegate.h", |
| 68 "browser_plugin_guest_manager.cc", | 68 "browser_plugin_guest_manager.cc", |
| 69 "browser_plugin_guest_manager.h", | 69 "browser_plugin_guest_manager.h", |
| 70 "browser_ppapi_host.h", | 70 "browser_ppapi_host.h", |
| 71 "browser_thread.h", | 71 "browser_thread.h", |
| 72 "browser_thread_delegate.h", | 72 "browser_thread_delegate.h", |
| 73 "browser_url_handler.h", | 73 "browser_url_handler.h", |
| 74 "browsing_data_filter_builder.h", | 74 "browsing_data_filter_builder.h", |
| 75 "browsing_data_types.cc", |
| 76 "browsing_data_types.h", |
| 75 "cache_storage_context.h", | 77 "cache_storage_context.h", |
| 76 "cache_storage_usage_info.h", | 78 "cache_storage_usage_info.h", |
| 77 "cdm_registry.h", | 79 "cdm_registry.h", |
| 78 "certificate_request_result_type.h", | 80 "certificate_request_result_type.h", |
| 79 "child_process_data.h", | 81 "child_process_data.h", |
| 80 "child_process_security_policy.h", | 82 "child_process_security_policy.h", |
| 81 "client_certificate_delegate.h", | 83 "client_certificate_delegate.h", |
| 82 "color_chooser.h", | 84 "color_chooser.h", |
| 83 "content_browser_client.cc", | 85 "content_browser_client.cc", |
| 84 "content_browser_client.h", | 86 "content_browser_client.h", |
| (...skipping 240 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 325 | 327 |
| 326 if (is_android) { | 328 if (is_android) { |
| 327 deps += [ "//ui/android" ] | 329 deps += [ "//ui/android" ] |
| 328 } | 330 } |
| 329 | 331 |
| 330 if (use_aura) { | 332 if (use_aura) { |
| 331 sources -= [ "context_factory.h" ] | 333 sources -= [ "context_factory.h" ] |
| 332 deps += [ "//ui/aura" ] | 334 deps += [ "//ui/aura" ] |
| 333 } | 335 } |
| 334 } | 336 } |
| OLD | NEW |