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