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