| 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 99 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 110 "download_url_parameters.cc", | 110 "download_url_parameters.cc", |
| 111 "download_url_parameters.h", | 111 "download_url_parameters.h", |
| 112 "favicon_status.cc", | 112 "favicon_status.cc", |
| 113 "favicon_status.h", | 113 "favicon_status.h", |
| 114 "file_descriptor_info.h", | 114 "file_descriptor_info.h", |
| 115 "focused_node_details.h", | 115 "focused_node_details.h", |
| 116 "font_list_async.h", | 116 "font_list_async.h", |
| 117 "global_request_id.h", | 117 "global_request_id.h", |
| 118 "gpu_data_manager.h", | 118 "gpu_data_manager.h", |
| 119 "gpu_data_manager_observer.h", | 119 "gpu_data_manager_observer.h", |
| 120 "gpu_feature_checker.cc", |
| 121 "gpu_feature_checker.h", |
| 120 "gpu_service_registry.cc", | 122 "gpu_service_registry.cc", |
| 121 "gpu_service_registry.h", | 123 "gpu_service_registry.h", |
| 122 "gpu_utils.cc", | 124 "gpu_utils.cc", |
| 123 "gpu_utils.h", | 125 "gpu_utils.h", |
| 124 "guest_mode.cc", | 126 "guest_mode.cc", |
| 125 "guest_mode.h", | 127 "guest_mode.h", |
| 126 "histogram_fetcher.h", | 128 "histogram_fetcher.h", |
| 127 "host_zoom_map.h", | 129 "host_zoom_map.h", |
| 128 "indexed_db_context.h", | 130 "indexed_db_context.h", |
| 129 "indexed_db_info.h", | 131 "indexed_db_info.h", |
| (...skipping 194 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 324 | 326 |
| 325 if (is_android) { | 327 if (is_android) { |
| 326 deps += [ "//ui/android" ] | 328 deps += [ "//ui/android" ] |
| 327 } | 329 } |
| 328 | 330 |
| 329 if (use_aura) { | 331 if (use_aura) { |
| 330 sources -= [ "context_factory.h" ] | 332 sources -= [ "context_factory.h" ] |
| 331 deps += [ "//ui/aura" ] | 333 deps += [ "//ui/aura" ] |
| 332 } | 334 } |
| 333 } | 335 } |
| OLD | NEW |