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