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 | 7 |
8 if (is_component_build) { | 8 if (is_component_build) { |
9 link_target_type = "source_set" | 9 link_target_type = "source_set" |
10 } else { | 10 } else { |
(...skipping 110 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
121 "memory/child_memory_coordinator_impl_android.h", | 121 "memory/child_memory_coordinator_impl_android.h", |
122 "memory/child_memory_message_filter.cc", | 122 "memory/child_memory_message_filter.cc", |
123 "memory/child_memory_message_filter.h", | 123 "memory/child_memory_message_filter.h", |
124 "mojo/type_converters.h", | 124 "mojo/type_converters.h", |
125 "notifications/notification_data_conversions.cc", | 125 "notifications/notification_data_conversions.cc", |
126 "notifications/notification_data_conversions.h", | 126 "notifications/notification_data_conversions.h", |
127 "notifications/notification_dispatcher.cc", | 127 "notifications/notification_dispatcher.cc", |
128 "notifications/notification_dispatcher.h", | 128 "notifications/notification_dispatcher.h", |
129 "notifications/notification_manager.cc", | 129 "notifications/notification_manager.cc", |
130 "notifications/notification_manager.h", | 130 "notifications/notification_manager.h", |
131 "power_monitor_broadcast_source.cc", | |
132 "power_monitor_broadcast_source.h", | |
133 "push_messaging/push_dispatcher.cc", | 131 "push_messaging/push_dispatcher.cc", |
134 "push_messaging/push_dispatcher.h", | 132 "push_messaging/push_dispatcher.h", |
135 "push_messaging/push_provider.cc", | 133 "push_messaging/push_provider.cc", |
136 "push_messaging/push_provider.h", | 134 "push_messaging/push_provider.h", |
137 "quota_dispatcher.cc", | 135 "quota_dispatcher.cc", |
138 "quota_dispatcher.h", | 136 "quota_dispatcher.h", |
139 "quota_message_filter.cc", | 137 "quota_message_filter.cc", |
140 "quota_message_filter.h", | 138 "quota_message_filter.h", |
141 "request_extra_data.cc", | 139 "request_extra_data.cc", |
142 "request_extra_data.h", | 140 "request_extra_data.h", |
(...skipping 82 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
225 "//components/discardable_memory/client", | 223 "//components/discardable_memory/client", |
226 "//components/mime_util", | 224 "//components/mime_util", |
227 "//components/tracing", | 225 "//components/tracing", |
228 "//components/tracing:startup_tracing", | 226 "//components/tracing:startup_tracing", |
229 "//components/webcrypto", | 227 "//components/webcrypto", |
230 "//content/app/resources", | 228 "//content/app/resources", |
231 "//content/app/strings", | 229 "//content/app/strings", |
232 "//content/common", | 230 "//content/common", |
233 "//content/public/common:common_sources", | 231 "//content/public/common:common_sources", |
234 "//crypto:platform", | 232 "//crypto:platform", |
| 233 "//device/power_monitor/public/cpp", |
235 "//gpu/command_buffer/client", | 234 "//gpu/command_buffer/client", |
236 "//ipc", | 235 "//ipc", |
237 "//ipc:mojom", | 236 "//ipc:mojom", |
238 "//media", | 237 "//media", |
239 "//mojo/common", | 238 "//mojo/common", |
240 "//mojo/edk/system", | 239 "//mojo/edk/system", |
241 "//net", | 240 "//net", |
242 "//services/service_manager/public/cpp", | 241 "//services/service_manager/public/cpp", |
243 "//services/service_manager/public/interfaces", | 242 "//services/service_manager/public/interfaces", |
244 "//services/service_manager/runner/common", | 243 "//services/service_manager/runner/common", |
(...skipping 48 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
293 | 292 |
294 # See comment at the top of //content/BUILD.gn for how this works. | 293 # See comment at the top of //content/BUILD.gn for how this works. |
295 group("for_content_tests") { | 294 group("for_content_tests") { |
296 visibility = [ "//content/test/*" ] | 295 visibility = [ "//content/test/*" ] |
297 if (!is_component_build) { | 296 if (!is_component_build) { |
298 public_deps = [ | 297 public_deps = [ |
299 ":child", | 298 ":child", |
300 ] | 299 ] |
301 } | 300 } |
302 } | 301 } |
OLD | NEW |