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/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 Loading... |
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 Loading... |
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 } |
OLD | NEW |