OLD | NEW |
1 # Copyright 2017 The Chromium Authors. All rights reserved. | 1 # Copyright 2017 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("//services/service_manager/public/service_manifest.gni") | 5 import("//services/service_manager/public/service_manifest.gni") |
6 | 6 |
7 group("network") { | 7 group("network") { |
8 visibility = [ "//content/*" ] # This is an internal content API. | 8 visibility = [ "//content/*" ] # This is an internal content API. |
9 | 9 |
10 if (is_component_build) { | 10 if (is_component_build) { |
(...skipping 10 matching lines...) Expand all Loading... |
21 source_set("network_sources") { | 21 source_set("network_sources") { |
22 # Depend on via ":network above. | 22 # Depend on via ":network above. |
23 visibility = [ | 23 visibility = [ |
24 ":network", | 24 ":network", |
25 "//content", # For the component build. | 25 "//content", # For the component build. |
26 "//content/app:*", | 26 "//content/app:*", |
27 "//content/utility:utility", | 27 "//content/utility:utility", |
28 ] | 28 ] |
29 | 29 |
30 sources = [ | 30 sources = [ |
| 31 "cache_url_loader.cc", |
| 32 "cache_url_loader.h", |
31 "net_adapters.cc", | 33 "net_adapters.cc", |
32 "net_adapters.h", | 34 "net_adapters.h", |
33 "network_context.cc", | 35 "network_context.cc", |
34 "network_context.h", | 36 "network_context.h", |
35 "network_service.cc", | 37 "network_service.cc", |
36 "network_service.h", | 38 "network_service.h", |
37 "network_service_url_loader_factory_impl.cc", | 39 "network_service_url_loader_factory_impl.cc", |
38 "network_service_url_loader_factory_impl.h", | 40 "network_service_url_loader_factory_impl.h", |
39 "url_loader_impl.cc", | 41 "url_loader_impl.cc", |
40 "url_loader_impl.h", | 42 "url_loader_impl.h", |
(...skipping 11 matching lines...) Expand all Loading... |
52 "//net", | 54 "//net", |
53 "//services/service_manager/public/cpp", | 55 "//services/service_manager/public/cpp", |
54 "//services/service_manager/public/interfaces", | 56 "//services/service_manager/public/interfaces", |
55 ] | 57 ] |
56 } | 58 } |
57 | 59 |
58 service_manifest("manifest") { | 60 service_manifest("manifest") { |
59 name = "network" | 61 name = "network" |
60 source = "manifest.json" | 62 source = "manifest.json" |
61 } | 63 } |
OLD | NEW |