| 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 279 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 290 "//content:content_implementation", | 290 "//content:content_implementation", |
| 291 ] | 291 ] |
| 292 | 292 |
| 293 public_deps = [ | 293 public_deps = [ |
| 294 "//mojo/public/cpp/bindings", | 294 "//mojo/public/cpp/bindings", |
| 295 "//mojo/public/cpp/system", | 295 "//mojo/public/cpp/system", |
| 296 "//services/service_manager/public/cpp", | 296 "//services/service_manager/public/cpp", |
| 297 | 297 |
| 298 # We expose skia headers in the public API. | 298 # We expose skia headers in the public API. |
| 299 "//skia", | 299 "//skia", |
| 300 |
| 301 # We expose storage headers for quota in the public API. |
| 302 "//storage/browser", |
| 300 "//third_party/WebKit/public:mojo_bindings", | 303 "//third_party/WebKit/public:mojo_bindings", |
| 301 ] | 304 ] |
| 302 deps = [ | 305 deps = [ |
| 303 "//cc", | 306 "//cc", |
| 304 "//content/browser", # Must not be public_deps! | 307 "//content/browser", # Must not be public_deps! |
| 305 "//content/public/common:common_sources", | 308 "//content/public/common:common_sources", |
| 306 "//device/geolocation", | 309 "//device/geolocation", |
| 307 "//device/power_save_blocker", | 310 "//device/power_save_blocker", |
| 308 "//gpu", | 311 "//gpu", |
| 309 "//media", | 312 "//media", |
| 310 "//net", | 313 "//net", |
| 311 "//ppapi/c", | 314 "//ppapi/c", |
| 312 "//storage/browser", | |
| 313 "//ui/accessibility", | 315 "//ui/accessibility", |
| 314 "//ui/base", | 316 "//ui/base", |
| 315 "//ui/events", | 317 "//ui/events", |
| 316 "//ui/gl", | 318 "//ui/gl", |
| 317 "//ui/surface", | 319 "//ui/surface", |
| 318 ] | 320 ] |
| 319 | 321 |
| 320 allow_circular_includes_from = [ | 322 allow_circular_includes_from = [ |
| 321 # This target is a pair with content/browser. They always go together and | 323 # This target is a pair with content/browser. They always go together and |
| 322 # include headers from each other. | 324 # include headers from each other. |
| 323 "//content/browser", | 325 "//content/browser", |
| 324 ] | 326 ] |
| 325 | 327 |
| 326 if (is_android) { | 328 if (is_android) { |
| 327 deps += [ "//ui/android" ] | 329 deps += [ "//ui/android" ] |
| 328 } | 330 } |
| 329 | 331 |
| 330 if (use_aura) { | 332 if (use_aura) { |
| 331 sources -= [ "context_factory.h" ] | 333 sources -= [ "context_factory.h" ] |
| 332 deps += [ "//ui/aura" ] | 334 deps += [ "//ui/aura" ] |
| 333 } | 335 } |
| 334 } | 336 } |
| OLD | NEW |