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 157 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
168 "service_worker/web_service_worker_provider_impl.cc", | 168 "service_worker/web_service_worker_provider_impl.cc", |
169 "service_worker/web_service_worker_provider_impl.h", | 169 "service_worker/web_service_worker_provider_impl.h", |
170 "service_worker/web_service_worker_registration_impl.cc", | 170 "service_worker/web_service_worker_registration_impl.cc", |
171 "service_worker/web_service_worker_registration_impl.h", | 171 "service_worker/web_service_worker_registration_impl.h", |
172 "shared_memory_data_consumer_handle.cc", | 172 "shared_memory_data_consumer_handle.cc", |
173 "shared_memory_data_consumer_handle.h", | 173 "shared_memory_data_consumer_handle.h", |
174 "shared_memory_received_data_factory.cc", | 174 "shared_memory_received_data_factory.cc", |
175 "shared_memory_received_data_factory.h", | 175 "shared_memory_received_data_factory.h", |
176 "shared_worker_devtools_agent.cc", | 176 "shared_worker_devtools_agent.cc", |
177 "shared_worker_devtools_agent.h", | 177 "shared_worker_devtools_agent.h", |
178 "simple_webmimeregistry_impl.cc", | |
179 "simple_webmimeregistry_impl.h", | |
180 "site_isolation_stats_gatherer.cc", | 178 "site_isolation_stats_gatherer.cc", |
181 "site_isolation_stats_gatherer.h", | 179 "site_isolation_stats_gatherer.h", |
182 "storage_util.cc", | 180 "storage_util.cc", |
183 "storage_util.h", | 181 "storage_util.h", |
184 "sync_load_response.cc", | 182 "sync_load_response.cc", |
185 "sync_load_response.h", | 183 "sync_load_response.h", |
186 "thread_safe_sender.cc", | 184 "thread_safe_sender.cc", |
187 "thread_safe_sender.h", | 185 "thread_safe_sender.h", |
188 "url_response_body_consumer.cc", | 186 "url_response_body_consumer.cc", |
189 "url_response_body_consumer.h", | 187 "url_response_body_consumer.h", |
(...skipping 105 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
295 | 293 |
296 # See comment at the top of //content/BUILD.gn for how this works. | 294 # See comment at the top of //content/BUILD.gn for how this works. |
297 group("for_content_tests") { | 295 group("for_content_tests") { |
298 visibility = [ "//content/test/*" ] | 296 visibility = [ "//content/test/*" ] |
299 if (!is_component_build) { | 297 if (!is_component_build) { |
300 public_deps = [ | 298 public_deps = [ |
301 ":child", | 299 ":child", |
302 ] | 300 ] |
303 } | 301 } |
304 } | 302 } |
OLD | NEW |