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