| 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 265 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 276 ] | 276 ] |
| 277 configs += [ | 277 configs += [ |
| 278 "//build/config:precompiled_headers", | 278 "//build/config:precompiled_headers", |
| 279 "//build/config/compiler:wexit_time_destructors", | 279 "//build/config/compiler:wexit_time_destructors", |
| 280 "//content:content_implementation", | 280 "//content:content_implementation", |
| 281 ] | 281 ] |
| 282 | 282 |
| 283 public_deps = [ | 283 public_deps = [ |
| 284 "//mojo/public/cpp/bindings", | 284 "//mojo/public/cpp/bindings", |
| 285 "//mojo/public/cpp/system", | 285 "//mojo/public/cpp/system", |
| 286 "//services/shell/public/cpp", | 286 "//services/service_manager/public/cpp", |
| 287 | 287 |
| 288 # We expose skia headers in the public API. | 288 # We expose skia headers in the public API. |
| 289 "//skia", | 289 "//skia", |
| 290 "//third_party/WebKit/public:mojo_bindings", | 290 "//third_party/WebKit/public:mojo_bindings", |
| 291 ] | 291 ] |
| 292 deps = [ | 292 deps = [ |
| 293 "//cc", | 293 "//cc", |
| 294 "//content/browser", # Must not be public_deps! | 294 "//content/browser", # Must not be public_deps! |
| 295 "//content/public/common:common_sources", | 295 "//content/public/common:common_sources", |
| 296 "//device/geolocation", | 296 "//device/geolocation", |
| (...skipping 18 matching lines...) Expand all Loading... |
| 315 | 315 |
| 316 if (is_android) { | 316 if (is_android) { |
| 317 deps += [ "//ui/android" ] | 317 deps += [ "//ui/android" ] |
| 318 } | 318 } |
| 319 | 319 |
| 320 if (use_aura) { | 320 if (use_aura) { |
| 321 sources -= [ "context_factory.h" ] | 321 sources -= [ "context_factory.h" ] |
| 322 deps += [ "//ui/aura" ] | 322 deps += [ "//ui/aura" ] |
| 323 } | 323 } |
| 324 } | 324 } |
| OLD | NEW |