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

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: Another GYP fix Created 4 years, 5 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 source_set("child") { 9 source_set("child") {
10 # Targets external to content should always link to the public API. 10 # Targets external to content should always link to the public API.
(...skipping 19 matching lines...) Expand all
30 "//content/public/common:mojo_shell_client", 30 "//content/public/common:mojo_shell_client",
31 ] 31 ]
32 32
33 public_deps = [ 33 public_deps = [
34 "//gpu/ipc/client:client", 34 "//gpu/ipc/client:client",
35 ] 35 ]
36 36
37 deps = [ 37 deps = [
38 "//base", 38 "//base",
39 "//components/mime_util", 39 "//components/mime_util",
40 "//components/scheduler:scheduler",
41 "//components/tracing", 40 "//components/tracing",
42 "//components/tracing:startup_tracing", 41 "//components/tracing:startup_tracing",
43 "//components/webcrypto", 42 "//components/webcrypto",
44 "//content/app/resources", 43 "//content/app/resources",
45 "//content/app/strings", 44 "//content/app/strings",
46 "//content/common", 45 "//content/common",
47 "//content/public/common:common_sources", 46 "//content/public/common:common_sources",
48 "//crypto:platform", 47 "//crypto:platform",
49 "//gpu/command_buffer/client", 48 "//gpu/command_buffer/client",
50 "//media", 49 "//media",
(...skipping 50 matching lines...) Expand 10 before | Expand all | Expand 10 after
101 100
102 # See comment at the top of //content/BUILD.gn for how this works. 101 # See comment at the top of //content/BUILD.gn for how this works.
103 group("for_content_tests") { 102 group("for_content_tests") {
104 visibility = [ "//content/test/*" ] 103 visibility = [ "//content/test/*" ]
105 if (!is_component_build) { 104 if (!is_component_build) {
106 public_deps = [ 105 public_deps = [
107 ":child", 106 ":child",
108 ] 107 ]
109 } 108 }
110 } 109 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698