Chromium Code Reviews| 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 55 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
| 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 "cache_storage_context.h", | 74 "cache_storage_context.h", |
| 75 "cache_storage_usage_info.h", | 75 "cache_storage_usage_info.h", |
| 76 "cdm_registry.h", | |
|
nasko
2016/12/12 23:25:16
nit: This didn't rename cdm_service, why is it nee
xhwang
2016/12/12 23:34:20
It was missing from the original CL. Since it's on
| |
| 76 "certificate_request_result_type.h", | 77 "certificate_request_result_type.h", |
| 77 "child_process_data.h", | 78 "child_process_data.h", |
| 78 "child_process_security_policy.h", | 79 "child_process_security_policy.h", |
| 79 "client_certificate_delegate.h", | 80 "client_certificate_delegate.h", |
| 80 "color_chooser.h", | 81 "color_chooser.h", |
| 81 "content_browser_client.cc", | 82 "content_browser_client.cc", |
| 82 "content_browser_client.h", | 83 "content_browser_client.h", |
| 83 "context_factory.h", | 84 "context_factory.h", |
| 84 "cookie_store_factory.h", | 85 "cookie_store_factory.h", |
| 85 "desktop_media_id.cc", | 86 "desktop_media_id.cc", |
| (...skipping 239 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
| 325 | 326 |
| 326 if (is_android) { | 327 if (is_android) { |
| 327 deps += [ "//ui/android" ] | 328 deps += [ "//ui/android" ] |
| 328 } | 329 } |
| 329 | 330 |
| 330 if (use_aura) { | 331 if (use_aura) { |
| 331 sources -= [ "context_factory.h" ] | 332 sources -= [ "context_factory.h" ] |
| 332 deps += [ "//ui/aura" ] | 333 deps += [ "//ui/aura" ] |
| 333 } | 334 } |
| 334 } | 335 } |
| OLD | NEW |