| 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 151 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 162 "navigation_details.cc", | 162 "navigation_details.cc", |
| 163 "navigation_details.h", | 163 "navigation_details.h", |
| 164 "navigation_entry.h", | 164 "navigation_entry.h", |
| 165 "navigation_handle.cc", | 165 "navigation_handle.cc", |
| 166 "navigation_handle.h", | 166 "navigation_handle.h", |
| 167 "navigation_throttle.cc", | 167 "navigation_throttle.cc", |
| 168 "navigation_throttle.h", | 168 "navigation_throttle.h", |
| 169 "navigation_type.h", | 169 "navigation_type.h", |
| 170 "navigation_ui_data.h", | 170 "navigation_ui_data.h", |
| 171 "network_quality_observer_factory.h", | 171 "network_quality_observer_factory.h", |
| 172 "network_service_instance.cc", |
| 173 "network_service_instance.h", |
| 172 "notification_database_data.cc", | 174 "notification_database_data.cc", |
| 173 "notification_database_data.h", | 175 "notification_database_data.h", |
| 174 "notification_details.h", | 176 "notification_details.h", |
| 175 "notification_event_dispatcher.h", | 177 "notification_event_dispatcher.h", |
| 176 "notification_observer.h", | 178 "notification_observer.h", |
| 177 "notification_registrar.cc", | 179 "notification_registrar.cc", |
| 178 "notification_registrar.h", | 180 "notification_registrar.h", |
| 179 "notification_service.h", | 181 "notification_service.h", |
| 180 "notification_source.h", | 182 "notification_source.h", |
| 181 "notification_types.h", | 183 "notification_types.h", |
| (...skipping 134 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 316 ] | 318 ] |
| 317 deps = [ | 319 deps = [ |
| 318 "//cc", | 320 "//cc", |
| 319 "//content/browser", # Must not be public_deps! | 321 "//content/browser", # Must not be public_deps! |
| 320 "//device/geolocation", | 322 "//device/geolocation", |
| 321 "//gpu", | 323 "//gpu", |
| 322 "//media", | 324 "//media", |
| 323 "//net", | 325 "//net", |
| 324 "//ppapi/c", | 326 "//ppapi/c", |
| 325 "//services/device/public/interfaces", | 327 "//services/device/public/interfaces", |
| 328 "//third_party/webrtc/modules/desktop_capture", |
| 326 "//ui/accessibility", | 329 "//ui/accessibility", |
| 327 "//ui/base", | 330 "//ui/base", |
| 328 "//ui/events", | 331 "//ui/events", |
| 329 "//ui/gl", | 332 "//ui/gl", |
| 330 "//ui/surface", | 333 "//ui/surface", |
| 331 "//third_party/webrtc/modules/desktop_capture", | |
| 332 ] | 334 ] |
| 333 | 335 |
| 334 allow_circular_includes_from = [ | 336 allow_circular_includes_from = [ |
| 335 # This target is a pair with content/browser. They always go together and | 337 # This target is a pair with content/browser. They always go together and |
| 336 # include headers from each other. | 338 # include headers from each other. |
| 337 "//content/browser", | 339 "//content/browser", |
| 338 ] | 340 ] |
| 339 | 341 |
| 340 if (is_android) { | 342 if (is_android) { |
| 341 deps += [ "//ui/android" ] | 343 deps += [ "//ui/android" ] |
| (...skipping 12 matching lines...) Expand all Loading... |
| 354 ] | 356 ] |
| 355 } | 357 } |
| 356 | 358 |
| 357 if (is_chromeos) { | 359 if (is_chromeos) { |
| 358 sources += [ | 360 sources += [ |
| 359 "arc_tracing_agent.cc", | 361 "arc_tracing_agent.cc", |
| 360 "arc_tracing_agent.h", | 362 "arc_tracing_agent.h", |
| 361 ] | 363 ] |
| 362 } | 364 } |
| 363 } | 365 } |
| OLD | NEW |