| 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 273 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 284 "zygote_handle_linux.h", | 284 "zygote_handle_linux.h", |
| 285 "zygote_host_linux.h", | 285 "zygote_host_linux.h", |
| 286 ] | 286 ] |
| 287 configs += [ | 287 configs += [ |
| 288 "//build/config:precompiled_headers", | 288 "//build/config:precompiled_headers", |
| 289 "//build/config/compiler:wexit_time_destructors", | 289 "//build/config/compiler:wexit_time_destructors", |
| 290 "//content:content_implementation", | 290 "//content:content_implementation", |
| 291 ] | 291 ] |
| 292 | 292 |
| 293 public_deps = [ | 293 public_deps = [ |
| 294 "//device/screen_orientation/public/interfaces", |
| 294 "//mojo/public/cpp/bindings", | 295 "//mojo/public/cpp/bindings", |
| 295 "//mojo/public/cpp/system", | 296 "//mojo/public/cpp/system", |
| 296 "//services/service_manager/public/cpp", | 297 "//services/service_manager/public/cpp", |
| 297 | 298 |
| 298 # We expose skia headers in the public API. | 299 # We expose skia headers in the public API. |
| 299 "//skia", | 300 "//skia", |
| 300 "//third_party/WebKit/public:mojo_bindings", | 301 "//third_party/WebKit/public:mojo_bindings", |
| 301 ] | 302 ] |
| 302 deps = [ | 303 deps = [ |
| 303 "//cc", | 304 "//cc", |
| (...skipping 21 matching lines...) Expand all Loading... |
| 325 | 326 |
| 326 if (is_android) { | 327 if (is_android) { |
| 327 deps += [ "//ui/android" ] | 328 deps += [ "//ui/android" ] |
| 328 } | 329 } |
| 329 | 330 |
| 330 if (use_aura) { | 331 if (use_aura) { |
| 331 sources -= [ "context_factory.h" ] | 332 sources -= [ "context_factory.h" ] |
| 332 deps += [ "//ui/aura" ] | 333 deps += [ "//ui/aura" ] |
| 333 } | 334 } |
| 334 } | 335 } |
| OLD | NEW |