| 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 100 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 111 "file_descriptor_info.h", | 111 "file_descriptor_info.h", |
| 112 "focused_node_details.h", | 112 "focused_node_details.h", |
| 113 "font_list_async.h", | 113 "font_list_async.h", |
| 114 "global_request_id.h", | 114 "global_request_id.h", |
| 115 "gpu_data_manager.h", | 115 "gpu_data_manager.h", |
| 116 "gpu_data_manager_observer.h", | 116 "gpu_data_manager_observer.h", |
| 117 "gpu_service_registry.cc", | 117 "gpu_service_registry.cc", |
| 118 "gpu_service_registry.h", | 118 "gpu_service_registry.h", |
| 119 "gpu_utils.cc", | 119 "gpu_utils.cc", |
| 120 "gpu_utils.h", | 120 "gpu_utils.h", |
| 121 "guest_mode.cc", |
| 122 "guest_mode.h", |
| 121 "histogram_fetcher.h", | 123 "histogram_fetcher.h", |
| 122 "host_zoom_map.h", | 124 "host_zoom_map.h", |
| 123 "indexed_db_context.h", | 125 "indexed_db_context.h", |
| 124 "indexed_db_info.h", | 126 "indexed_db_info.h", |
| 125 "interstitial_page.h", | 127 "interstitial_page.h", |
| 126 "interstitial_page_delegate.cc", | 128 "interstitial_page_delegate.cc", |
| 127 "interstitial_page_delegate.h", | 129 "interstitial_page_delegate.h", |
| 128 "invalidate_type.h", | 130 "invalidate_type.h", |
| 129 "javascript_dialog_manager.cc", | 131 "javascript_dialog_manager.cc", |
| 130 "javascript_dialog_manager.h", | 132 "javascript_dialog_manager.h", |
| (...skipping 179 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 310 | 312 |
| 311 if (is_android) { | 313 if (is_android) { |
| 312 deps += [ "//ui/android" ] | 314 deps += [ "//ui/android" ] |
| 313 } | 315 } |
| 314 | 316 |
| 315 if (use_aura) { | 317 if (use_aura) { |
| 316 sources -= [ "context_factory.h" ] | 318 sources -= [ "context_factory.h" ] |
| 317 deps += [ "//ui/aura" ] | 319 deps += [ "//ui/aura" ] |
| 318 } | 320 } |
| 319 } | 321 } |
| OLD | NEW |