| 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 56 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 67 "browser_plugin_guest_delegate.cc", | 67 "browser_plugin_guest_delegate.cc", |
| 68 "browser_plugin_guest_delegate.h", | 68 "browser_plugin_guest_delegate.h", |
| 69 "browser_plugin_guest_manager.cc", | 69 "browser_plugin_guest_manager.cc", |
| 70 "browser_plugin_guest_manager.h", | 70 "browser_plugin_guest_manager.h", |
| 71 "browser_ppapi_host.h", | 71 "browser_ppapi_host.h", |
| 72 "browser_thread.h", | 72 "browser_thread.h", |
| 73 "browser_thread_delegate.h", | 73 "browser_thread_delegate.h", |
| 74 "browser_url_handler.h", | 74 "browser_url_handler.h", |
| 75 "cache_storage_context.h", | 75 "cache_storage_context.h", |
| 76 "cache_storage_usage_info.h", | 76 "cache_storage_usage_info.h", |
| 77 "cert_store.h", | |
| 78 "certificate_request_result_type.h", | 77 "certificate_request_result_type.h", |
| 79 "child_process_data.h", | 78 "child_process_data.h", |
| 80 "child_process_security_policy.h", | 79 "child_process_security_policy.h", |
| 81 "client_certificate_delegate.h", | 80 "client_certificate_delegate.h", |
| 82 "color_chooser.h", | 81 "color_chooser.h", |
| 83 "content_browser_client.cc", | 82 "content_browser_client.cc", |
| 84 "content_browser_client.h", | 83 "content_browser_client.h", |
| 85 "context_factory.h", | 84 "context_factory.h", |
| 86 "cookie_store_factory.h", | 85 "cookie_store_factory.h", |
| 87 "desktop_media_id.cc", | 86 "desktop_media_id.cc", |
| (...skipping 220 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 308 | 307 |
| 309 if (is_android) { | 308 if (is_android) { |
| 310 deps += [ "//ui/android" ] | 309 deps += [ "//ui/android" ] |
| 311 } | 310 } |
| 312 | 311 |
| 313 if (use_aura) { | 312 if (use_aura) { |
| 314 sources -= [ "context_factory.h" ] | 313 sources -= [ "context_factory.h" ] |
| 315 deps += [ "//ui/aura" ] | 314 deps += [ "//ui/aura" ] |
| 316 } | 315 } |
| 317 } | 316 } |
| OLD | NEW |