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