| 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 269 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 280 ] | 280 ] |
| 281 | 281 |
| 282 public_deps = [ | 282 public_deps = [ |
| 283 "//mojo/public/cpp/bindings", | 283 "//mojo/public/cpp/bindings", |
| 284 "//mojo/public/cpp/system", | 284 "//mojo/public/cpp/system", |
| 285 "//services/shell/public/cpp", | 285 "//services/shell/public/cpp", |
| 286 | 286 |
| 287 # We expose skia headers in the public API. | 287 # We expose skia headers in the public API. |
| 288 "//skia", | 288 "//skia", |
| 289 "//third_party/WebKit/public:mojo_bindings", | 289 "//third_party/WebKit/public:mojo_bindings", |
| 290 "//ui/accessibility:ax_gen", |
| 290 ] | 291 ] |
| 291 deps = [ | 292 deps = [ |
| 292 "//cc", | 293 "//cc", |
| 293 "//content/browser", # Must not be public_deps! | 294 "//content/browser", # Must not be public_deps! |
| 294 "//content/public/common:common_sources", | 295 "//content/public/common:common_sources", |
| 295 "//device/geolocation", | 296 "//device/geolocation", |
| 296 "//device/power_save_blocker", | 297 "//device/power_save_blocker", |
| 297 "//gpu", | 298 "//gpu", |
| 298 "//media", | 299 "//media", |
| 299 "//net", | 300 "//net", |
| (...skipping 14 matching lines...) Expand all 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 |