| 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 120 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 131 "push_messaging/push_dispatcher.cc", | 131 "push_messaging/push_dispatcher.cc", |
| 132 "push_messaging/push_dispatcher.h", | 132 "push_messaging/push_dispatcher.h", |
| 133 "push_messaging/push_provider.cc", | 133 "push_messaging/push_provider.cc", |
| 134 "push_messaging/push_provider.h", | 134 "push_messaging/push_provider.h", |
| 135 "quota_dispatcher.cc", | 135 "quota_dispatcher.cc", |
| 136 "quota_dispatcher.h", | 136 "quota_dispatcher.h", |
| 137 "quota_message_filter.cc", | 137 "quota_message_filter.cc", |
| 138 "quota_message_filter.h", | 138 "quota_message_filter.h", |
| 139 "request_extra_data.cc", | 139 "request_extra_data.cc", |
| 140 "request_extra_data.h", | 140 "request_extra_data.h", |
| 141 "request_info.cc", | |
| 142 "request_info.h", | |
| 143 "resource_dispatcher.cc", | 141 "resource_dispatcher.cc", |
| 144 "resource_dispatcher.h", | 142 "resource_dispatcher.h", |
| 145 "resource_scheduling_filter.cc", | 143 "resource_scheduling_filter.cc", |
| 146 "resource_scheduling_filter.h", | 144 "resource_scheduling_filter.h", |
| 147 "runtime_features.cc", | 145 "runtime_features.cc", |
| 148 "runtime_features.h", | 146 "runtime_features.h", |
| 149 "scoped_child_process_reference.cc", | 147 "scoped_child_process_reference.cc", |
| 150 "scoped_child_process_reference.h", | 148 "scoped_child_process_reference.h", |
| 151 "scoped_web_callbacks.h", | 149 "scoped_web_callbacks.h", |
| 152 "service_factory.cc", | 150 "service_factory.cc", |
| (...skipping 141 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 294 | 292 |
| 295 # 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. |
| 296 group("for_content_tests") { | 294 group("for_content_tests") { |
| 297 visibility = [ "//content/test/*" ] | 295 visibility = [ "//content/test/*" ] |
| 298 if (!is_component_build) { | 296 if (!is_component_build) { |
| 299 public_deps = [ | 297 public_deps = [ |
| 300 ":child", | 298 ":child", |
| 301 ] | 299 ] |
| 302 } | 300 } |
| 303 } | 301 } |
| OLD | NEW |