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

Side by Side Diff: content/child/BUILD.gn

Issue 2118903002: scheduler: Move the Blink scheduler into Blink (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Really fixed the test failure this time Created 4 years, 4 months 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/features.gni") 5 import("//build/config/features.gni")
6 import("//build/config/ui.gni") 6 import("//build/config/ui.gni")
7 import("//content/child/child.gni") 7 import("//content/child/child.gni")
8 8
9 if (is_component_build) { 9 if (is_component_build) {
10 link_target_type = "source_set" 10 link_target_type = "source_set"
(...skipping 28 matching lines...) Expand all
39 "//content/public/common:mojo_shell_client", 39 "//content/public/common:mojo_shell_client",
40 ] 40 ]
41 41
42 public_deps = [ 42 public_deps = [
43 "//gpu/ipc/client:client", 43 "//gpu/ipc/client:client",
44 ] 44 ]
45 45
46 deps = [ 46 deps = [
47 "//base", 47 "//base",
48 "//components/mime_util", 48 "//components/mime_util",
49 "//components/scheduler:scheduler",
50 "//components/tracing", 49 "//components/tracing",
51 "//components/tracing:startup_tracing", 50 "//components/tracing:startup_tracing",
52 "//components/webcrypto", 51 "//components/webcrypto",
53 "//content/app/resources", 52 "//content/app/resources",
54 "//content/app/strings", 53 "//content/app/strings",
55 "//content/common", 54 "//content/common",
56 "//content/public/common:common_sources", 55 "//content/public/common:common_sources",
57 "//crypto:platform", 56 "//crypto:platform",
58 "//gpu/command_buffer/client", 57 "//gpu/command_buffer/client",
59 "//media", 58 "//media",
(...skipping 50 matching lines...) Expand 10 before | Expand all | Expand 10 after
110 109
111 # See comment at the top of //content/BUILD.gn for how this works. 110 # See comment at the top of //content/BUILD.gn for how this works.
112 group("for_content_tests") { 111 group("for_content_tests") {
113 visibility = [ "//content/test/*" ] 112 visibility = [ "//content/test/*" ]
114 if (!is_component_build) { 113 if (!is_component_build) {
115 public_deps = [ 114 public_deps = [
116 ":child", 115 ":child",
117 ] 116 ]
118 } 117 }
119 } 118 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698