| 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 295 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 306 | 306 |
| 307 # We expose storage headers for quota in the public API. | 307 # We expose storage headers for quota in the public API. |
| 308 "//storage/browser", | 308 "//storage/browser", |
| 309 "//third_party/WebKit/public:mojo_bindings", | 309 "//third_party/WebKit/public:mojo_bindings", |
| 310 ] | 310 ] |
| 311 deps = [ | 311 deps = [ |
| 312 "//cc", | 312 "//cc", |
| 313 "//content/browser", # Must not be public_deps! | 313 "//content/browser", # Must not be public_deps! |
| 314 "//device/geolocation", | 314 "//device/geolocation", |
| 315 "//device/power_save_blocker", | 315 "//device/power_save_blocker", |
| 316 "//device/wake_lock/public/interfaces", |
| 316 "//gpu", | 317 "//gpu", |
| 317 "//media", | 318 "//media", |
| 318 "//net", | 319 "//net", |
| 319 "//ppapi/c", | 320 "//ppapi/c", |
| 320 "//ui/accessibility", | 321 "//ui/accessibility", |
| 321 "//ui/base", | 322 "//ui/base", |
| 322 "//ui/events", | 323 "//ui/events", |
| 323 "//ui/gl", | 324 "//ui/gl", |
| 324 "//ui/surface", | 325 "//ui/surface", |
| 325 ] | 326 ] |
| (...skipping 10 matching lines...) Expand all Loading... |
| 336 | 337 |
| 337 if (use_aura) { | 338 if (use_aura) { |
| 338 sources -= [ "context_factory.h" ] | 339 sources -= [ "context_factory.h" ] |
| 339 deps += [ "//ui/aura" ] | 340 deps += [ "//ui/aura" ] |
| 340 } | 341 } |
| 341 | 342 |
| 342 if (!is_android) { | 343 if (!is_android) { |
| 343 sources += [ "devtools_frontend_host.h" ] | 344 sources += [ "devtools_frontend_host.h" ] |
| 344 } | 345 } |
| 345 } | 346 } |
| OLD | NEW |