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 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 32 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
43 "//components/webcrypto", | 43 "//components/webcrypto", |
44 "//content/app/resources", | 44 "//content/app/resources", |
45 "//content/app/strings", | 45 "//content/app/strings", |
46 "//content/common", | 46 "//content/common", |
47 "//content/public/common:common_sources", | 47 "//content/public/common:common_sources", |
48 "//crypto:platform", | 48 "//crypto:platform", |
49 "//gpu/command_buffer/client", | 49 "//gpu/command_buffer/client", |
50 "//media", | 50 "//media", |
51 "//mojo/common", | 51 "//mojo/common", |
52 "//mojo/edk/system", | 52 "//mojo/edk/system", |
| 53 "//mojo/message_pump", |
53 "//net", | 54 "//net", |
54 "//services/shell/public/cpp", | 55 "//services/shell/public/cpp", |
55 "//services/shell/public/interfaces", | 56 "//services/shell/public/interfaces", |
56 "//services/shell/runner/common", | 57 "//services/shell/runner/common", |
57 "//skia", | 58 "//skia", |
58 "//storage/common", | 59 "//storage/common", |
59 "//third_party/WebKit/public:blink_headers", | 60 "//third_party/WebKit/public:blink_headers", |
60 "//third_party/WebKit/public:image_resources", | 61 "//third_party/WebKit/public:image_resources", |
61 "//third_party/WebKit/public:resources", | 62 "//third_party/WebKit/public:resources", |
62 "//third_party/icu", | 63 "//third_party/icu", |
(...skipping 38 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
101 | 102 |
102 # See comment at the top of //content/BUILD.gn for how this works. | 103 # See comment at the top of //content/BUILD.gn for how this works. |
103 group("for_content_tests") { | 104 group("for_content_tests") { |
104 visibility = [ "//content/test/*" ] | 105 visibility = [ "//content/test/*" ] |
105 if (!is_component_build) { | 106 if (!is_component_build) { |
106 public_deps = [ | 107 public_deps = [ |
107 ":child", | 108 ":child", |
108 ] | 109 ] |
109 } | 110 } |
110 } | 111 } |
OLD | NEW |