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 26 matching lines...) Expand all Loading... |
37 "network_service_url_loader_factory_impl.cc", | 37 "network_service_url_loader_factory_impl.cc", |
38 "network_service_url_loader_factory_impl.h", | 38 "network_service_url_loader_factory_impl.h", |
39 "url_loader_impl.cc", | 39 "url_loader_impl.cc", |
40 "url_loader_impl.h", | 40 "url_loader_impl.h", |
41 ] | 41 ] |
42 | 42 |
43 configs += [ "//content:content_implementation" ] | 43 configs += [ "//content:content_implementation" ] |
44 | 44 |
45 deps = [ | 45 deps = [ |
46 "//base", | 46 "//base", |
| 47 "//components/network_session_configurator/common", |
47 "//content:export", | 48 "//content:export", |
48 "//content/common", | 49 "//content/common", |
49 "//content/common:mojo_bindings", | 50 "//content/common:mojo_bindings", |
50 "//content/public/common:common_sources", | 51 "//content/public/common:common_sources", |
51 "//mojo/public/cpp/bindings", | 52 "//mojo/public/cpp/bindings", |
52 "//net", | 53 "//net", |
53 "//services/service_manager/public/cpp", | 54 "//services/service_manager/public/cpp", |
54 "//services/service_manager/public/interfaces", | 55 "//services/service_manager/public/interfaces", |
55 ] | 56 ] |
56 } | 57 } |
57 | 58 |
58 service_manifest("manifest") { | 59 service_manifest("manifest") { |
59 name = "network" | 60 name = "network" |
60 source = "manifest.json" | 61 source = "manifest.json" |
61 } | 62 } |
OLD | NEW |