| 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 159 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 170 "shared_worker_devtools_agent.cc", | 170 "shared_worker_devtools_agent.cc", |
| 171 "shared_worker_devtools_agent.h", | 171 "shared_worker_devtools_agent.h", |
| 172 "site_isolation_stats_gatherer.cc", | 172 "site_isolation_stats_gatherer.cc", |
| 173 "site_isolation_stats_gatherer.h", | 173 "site_isolation_stats_gatherer.h", |
| 174 "storage_util.cc", | 174 "storage_util.cc", |
| 175 "storage_util.h", | 175 "storage_util.h", |
| 176 "sync_load_response.cc", | 176 "sync_load_response.cc", |
| 177 "sync_load_response.h", | 177 "sync_load_response.h", |
| 178 "thread_safe_sender.cc", | 178 "thread_safe_sender.cc", |
| 179 "thread_safe_sender.h", | 179 "thread_safe_sender.h", |
| 180 "url_loader_client_impl.cc", |
| 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", |
| 188 "web_url_loader_impl.cc", | 190 "web_url_loader_impl.cc", |
| 189 "web_url_loader_impl.h", | 191 "web_url_loader_impl.h", |
| (...skipping 100 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 290 | 292 |
| 291 # 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. |
| 292 group("for_content_tests") { | 294 group("for_content_tests") { |
| 293 visibility = [ "//content/test/*" ] | 295 visibility = [ "//content/test/*" ] |
| 294 if (!is_component_build) { | 296 if (!is_component_build) { |
| 295 public_deps = [ | 297 public_deps = [ |
| 296 ":child", | 298 ":child", |
| 297 ] | 299 ] |
| 298 } | 300 } |
| 299 } | 301 } |
| OLD | NEW |