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 143 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
154 "navigation_handle.cc", | 154 "navigation_handle.cc", |
155 "navigation_handle.h", | 155 "navigation_handle.h", |
156 "navigation_throttle.cc", | 156 "navigation_throttle.cc", |
157 "navigation_throttle.h", | 157 "navigation_throttle.h", |
158 "navigation_type.h", | 158 "navigation_type.h", |
159 "navigation_ui_data.h", | 159 "navigation_ui_data.h", |
160 "notification_database_data.cc", | 160 "notification_database_data.cc", |
161 "notification_database_data.h", | 161 "notification_database_data.h", |
162 "notification_details.h", | 162 "notification_details.h", |
163 "notification_event_dispatcher.h", | 163 "notification_event_dispatcher.h", |
| 164 "notification_id_verifier.h", |
164 "notification_observer.h", | 165 "notification_observer.h", |
165 "notification_registrar.cc", | 166 "notification_registrar.cc", |
166 "notification_registrar.h", | 167 "notification_registrar.h", |
167 "notification_service.h", | 168 "notification_service.h", |
168 "notification_source.h", | 169 "notification_source.h", |
169 "notification_types.h", | 170 "notification_types.h", |
170 "overscroll_configuration.h", | 171 "overscroll_configuration.h", |
171 "page_navigator.cc", | 172 "page_navigator.cc", |
172 "page_navigator.h", | 173 "page_navigator.h", |
173 "pepper_flash_settings_helper.h", | 174 "pepper_flash_settings_helper.h", |
(...skipping 152 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
326 | 327 |
327 if (is_android) { | 328 if (is_android) { |
328 deps += [ "//ui/android" ] | 329 deps += [ "//ui/android" ] |
329 } | 330 } |
330 | 331 |
331 if (use_aura) { | 332 if (use_aura) { |
332 sources -= [ "context_factory.h" ] | 333 sources -= [ "context_factory.h" ] |
333 deps += [ "//ui/aura" ] | 334 deps += [ "//ui/aura" ] |
334 } | 335 } |
335 } | 336 } |
OLD | NEW |