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 131 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
142 "navigation_controller.h", | 142 "navigation_controller.h", |
143 "navigation_data.h", | 143 "navigation_data.h", |
144 "navigation_details.cc", | 144 "navigation_details.cc", |
145 "navigation_details.h", | 145 "navigation_details.h", |
146 "navigation_entry.h", | 146 "navigation_entry.h", |
147 "navigation_handle.cc", | 147 "navigation_handle.cc", |
148 "navigation_handle.h", | 148 "navigation_handle.h", |
149 "navigation_throttle.cc", | 149 "navigation_throttle.cc", |
150 "navigation_throttle.h", | 150 "navigation_throttle.h", |
151 "navigation_type.h", | 151 "navigation_type.h", |
| 152 "navigation_ui_data.h", |
152 "notification_database_data.cc", | 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", |
(...skipping 150 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
312 | 313 |
313 if (is_android) { | 314 if (is_android) { |
314 deps += [ "//ui/android" ] | 315 deps += [ "//ui/android" ] |
315 } | 316 } |
316 | 317 |
317 if (use_aura) { | 318 if (use_aura) { |
318 sources -= [ "context_factory.h" ] | 319 sources -= [ "context_factory.h" ] |
319 deps += [ "//ui/aura" ] | 320 deps += [ "//ui/aura" ] |
320 } | 321 } |
321 } | 322 } |
OLD | NEW |