| 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("//ppapi/features/features.gni") | 7 import("//ppapi/features/features.gni") | 
| 8 import("//third_party/WebKit/public/public_features.gni") | 8 import("//third_party/WebKit/public/public_features.gni") | 
| 9 | 9 | 
| 10 if (is_component_build) { | 10 if (is_component_build) { | 
| (...skipping 157 matching lines...) Expand 10 before | Expand all | Expand 10 after  Loading... | 
| 168     "shared_worker_devtools_agent.cc", | 168     "shared_worker_devtools_agent.cc", | 
| 169     "shared_worker_devtools_agent.h", | 169     "shared_worker_devtools_agent.h", | 
| 170     "site_isolation_stats_gatherer.cc", | 170     "site_isolation_stats_gatherer.cc", | 
| 171     "site_isolation_stats_gatherer.h", | 171     "site_isolation_stats_gatherer.h", | 
| 172     "storage_util.cc", | 172     "storage_util.cc", | 
| 173     "storage_util.h", | 173     "storage_util.h", | 
| 174     "sync_load_response.cc", | 174     "sync_load_response.cc", | 
| 175     "sync_load_response.h", | 175     "sync_load_response.h", | 
| 176     "thread_safe_sender.cc", | 176     "thread_safe_sender.cc", | 
| 177     "thread_safe_sender.h", | 177     "thread_safe_sender.h", | 
|  | 178     "throttling_url_loader.cc", | 
|  | 179     "throttling_url_loader.h", | 
| 178     "url_loader_client_impl.cc", | 180     "url_loader_client_impl.cc", | 
| 179     "url_loader_client_impl.h", | 181     "url_loader_client_impl.h", | 
| 180     "url_response_body_consumer.cc", | 182     "url_response_body_consumer.cc", | 
| 181     "url_response_body_consumer.h", | 183     "url_response_body_consumer.h", | 
| 182     "v8_value_converter_impl.cc", | 184     "v8_value_converter_impl.cc", | 
| 183     "v8_value_converter_impl.h", | 185     "v8_value_converter_impl.h", | 
| 184     "web_data_consumer_handle_impl.cc", | 186     "web_data_consumer_handle_impl.cc", | 
| 185     "web_data_consumer_handle_impl.h", | 187     "web_data_consumer_handle_impl.h", | 
| 186     "web_database_observer_impl.cc", | 188     "web_database_observer_impl.cc", | 
| 187     "web_database_observer_impl.h", | 189     "web_database_observer_impl.h", | 
| (...skipping 108 matching lines...) Expand 10 before | Expand all | Expand 10 after  Loading... | 
| 296 | 298 | 
| 297 # See comment at the top of //content/BUILD.gn for how this works. | 299 # See comment at the top of //content/BUILD.gn for how this works. | 
| 298 group("for_content_tests") { | 300 group("for_content_tests") { | 
| 299   visibility = [ "//content/test/*" ] | 301   visibility = [ "//content/test/*" ] | 
| 300   if (!is_component_build) { | 302   if (!is_component_build) { | 
| 301     public_deps = [ | 303     public_deps = [ | 
| 302       ":child", | 304       ":child", | 
| 303     ] | 305     ] | 
| 304   } | 306   } | 
| 305 } | 307 } | 
| OLD | NEW | 
|---|