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 112 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
123 "memory/child_memory_coordinator_impl_android.h", | 123 "memory/child_memory_coordinator_impl_android.h", |
124 "memory/child_memory_message_filter.cc", | 124 "memory/child_memory_message_filter.cc", |
125 "memory/child_memory_message_filter.h", | 125 "memory/child_memory_message_filter.h", |
126 "mojo/type_converters.h", | 126 "mojo/type_converters.h", |
127 "notifications/notification_data_conversions.cc", | 127 "notifications/notification_data_conversions.cc", |
128 "notifications/notification_data_conversions.h", | 128 "notifications/notification_data_conversions.h", |
129 "notifications/notification_dispatcher.cc", | 129 "notifications/notification_dispatcher.cc", |
130 "notifications/notification_dispatcher.h", | 130 "notifications/notification_dispatcher.h", |
131 "notifications/notification_manager.cc", | 131 "notifications/notification_manager.cc", |
132 "notifications/notification_manager.h", | 132 "notifications/notification_manager.h", |
133 "power_monitor_broadcast_source.cc", | |
134 "power_monitor_broadcast_source.h", | |
135 "push_messaging/push_dispatcher.cc", | 133 "push_messaging/push_dispatcher.cc", |
136 "push_messaging/push_dispatcher.h", | 134 "push_messaging/push_dispatcher.h", |
137 "push_messaging/push_provider.cc", | 135 "push_messaging/push_provider.cc", |
138 "push_messaging/push_provider.h", | 136 "push_messaging/push_provider.h", |
139 "quota_dispatcher.cc", | 137 "quota_dispatcher.cc", |
140 "quota_dispatcher.h", | 138 "quota_dispatcher.h", |
141 "quota_message_filter.cc", | 139 "quota_message_filter.cc", |
142 "quota_message_filter.h", | 140 "quota_message_filter.h", |
143 "request_extra_data.cc", | 141 "request_extra_data.cc", |
144 "request_extra_data.h", | 142 "request_extra_data.h", |
(...skipping 83 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
228 "//base", | 226 "//base", |
229 "//components/mime_util", | 227 "//components/mime_util", |
230 "//components/tracing", | 228 "//components/tracing", |
231 "//components/tracing:startup_tracing", | 229 "//components/tracing:startup_tracing", |
232 "//components/webcrypto", | 230 "//components/webcrypto", |
233 "//content/app/resources", | 231 "//content/app/resources", |
234 "//content/app/strings", | 232 "//content/app/strings", |
235 "//content/common", | 233 "//content/common", |
236 "//content/public/common:common_sources", | 234 "//content/public/common:common_sources", |
237 "//crypto:platform", | 235 "//crypto:platform", |
236 "//device/power_monitor/public/cpp:power_monitor_broadcast_source", | |
blundell
2016/11/07 12:50:08
nit: this target should just be called "cpp".
ke.he
2016/11/08 08:59:55
Done.
| |
238 "//gpu/command_buffer/client", | 237 "//gpu/command_buffer/client", |
239 "//ipc", | 238 "//ipc", |
240 "//ipc:mojom", | 239 "//ipc:mojom", |
241 "//media", | 240 "//media", |
242 "//mojo/common", | 241 "//mojo/common", |
243 "//mojo/edk/system", | 242 "//mojo/edk/system", |
244 "//net", | 243 "//net", |
245 "//services/service_manager/public/cpp", | 244 "//services/service_manager/public/cpp", |
246 "//services/service_manager/public/interfaces", | 245 "//services/service_manager/public/interfaces", |
247 "//services/service_manager/runner/common", | 246 "//services/service_manager/runner/common", |
(...skipping 48 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
296 | 295 |
297 # See comment at the top of //content/BUILD.gn for how this works. | 296 # See comment at the top of //content/BUILD.gn for how this works. |
298 group("for_content_tests") { | 297 group("for_content_tests") { |
299 visibility = [ "//content/test/*" ] | 298 visibility = [ "//content/test/*" ] |
300 if (!is_component_build) { | 299 if (!is_component_build) { |
301 public_deps = [ | 300 public_deps = [ |
302 ":child", | 301 ":child", |
303 ] | 302 ] |
304 } | 303 } |
305 } | 304 } |
OLD | NEW |