Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(146)

Side by Side Diff: content/public/browser/BUILD.gn

Issue 2539263003: Move Task Scheduler Initialization From chrome/browser to Content (Closed)
Patch Set: CR Feedback and Move to Components Dependency Created 4 years ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
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 284 matching lines...) Expand 10 before | Expand all | Expand 10 after
295 "//mojo/public/cpp/bindings", 295 "//mojo/public/cpp/bindings",
296 "//mojo/public/cpp/system", 296 "//mojo/public/cpp/system",
297 "//services/service_manager/public/cpp", 297 "//services/service_manager/public/cpp",
298 298
299 # We expose skia headers in the public API. 299 # We expose skia headers in the public API.
300 "//skia", 300 "//skia",
301 "//third_party/WebKit/public:mojo_bindings", 301 "//third_party/WebKit/public:mojo_bindings",
302 ] 302 ]
303 deps = [ 303 deps = [
304 "//cc", 304 "//cc",
305 "//components/task_scheduler_util/initialization",
305 "//content/browser", # Must not be public_deps! 306 "//content/browser", # Must not be public_deps!
306 "//content/public/common:common_sources", 307 "//content/public/common:common_sources",
307 "//device/geolocation", 308 "//device/geolocation",
308 "//device/power_save_blocker", 309 "//device/power_save_blocker",
309 "//gpu", 310 "//gpu",
310 "//media", 311 "//media",
311 "//net", 312 "//net",
312 "//ppapi/c", 313 "//ppapi/c",
313 "//storage/browser", 314 "//storage/browser",
314 "//ui/accessibility", 315 "//ui/accessibility",
(...skipping 11 matching lines...) Expand all
326 327
327 if (is_android) { 328 if (is_android) {
328 deps += [ "//ui/android" ] 329 deps += [ "//ui/android" ]
329 } 330 }
330 331
331 if (use_aura) { 332 if (use_aura) {
332 sources -= [ "context_factory.h" ] 333 sources -= [ "context_factory.h" ]
333 deps += [ "//ui/aura" ] 334 deps += [ "//ui/aura" ]
334 } 335 }
335 } 336 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698