| 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 132 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 143 "navigation_controller.h", | 143 "navigation_controller.h", |
| 144 "navigation_data.h", | 144 "navigation_data.h", |
| 145 "navigation_details.cc", | 145 "navigation_details.cc", |
| 146 "navigation_details.h", | 146 "navigation_details.h", |
| 147 "navigation_entry.h", | 147 "navigation_entry.h", |
| 148 "navigation_handle.cc", | 148 "navigation_handle.cc", |
| 149 "navigation_handle.h", | 149 "navigation_handle.h", |
| 150 "navigation_throttle.cc", | 150 "navigation_throttle.cc", |
| 151 "navigation_throttle.h", | 151 "navigation_throttle.h", |
| 152 "navigation_type.h", | 152 "navigation_type.h", |
| 153 "notification_database_data.cc", |
| 153 "notification_database_data.h", | 154 "notification_database_data.h", |
| 154 "notification_details.h", | 155 "notification_details.h", |
| 155 "notification_event_dispatcher.h", | 156 "notification_event_dispatcher.h", |
| 156 "notification_observer.h", | 157 "notification_observer.h", |
| 157 "notification_registrar.cc", | 158 "notification_registrar.cc", |
| 158 "notification_registrar.h", | 159 "notification_registrar.h", |
| 159 "notification_service.h", | 160 "notification_service.h", |
| 160 "notification_source.h", | 161 "notification_source.h", |
| 161 "notification_types.h", | 162 "notification_types.h", |
| 162 "overscroll_configuration.h", | 163 "overscroll_configuration.h", |
| (...skipping 145 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 308 | 309 |
| 309 if (is_android) { | 310 if (is_android) { |
| 310 deps += [ "//ui/android" ] | 311 deps += [ "//ui/android" ] |
| 311 } | 312 } |
| 312 | 313 |
| 313 if (use_aura) { | 314 if (use_aura) { |
| 314 sources -= [ "context_factory.h" ] | 315 sources -= [ "context_factory.h" ] |
| 315 deps += [ "//ui/aura" ] | 316 deps += [ "//ui/aura" ] |
| 316 } | 317 } |
| 317 } | 318 } |
| OLD | NEW |