Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(41)

Side by Side Diff: content/network/BUILD.gn

Issue 2817453002: Bring back the URLLoader from the old Mandoline network service. (Closed)
Patch Set: Created 3 years, 8 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
(Empty)
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
3 # found in the LICENSE file.
4
5 group("network") {
6 visibility = [ "//content/*" ] # This is an internal content API.
7
8 if (is_component_build) {
9 public_deps = [
10 "//content",
11 ]
12 } else {
13 public_deps = [
14 ":network_sources",
15 ]
16 }
17 }
18
19 source_set("network_sources") {
20 # Depend on via ":network above.
21 visibility = [
22 ":network",
23 "//content", # For the component build.
24 "//content/app:*",
25 "//services/service_manager/public/cpp",
yzshen1 2017/04/11 21:58:04 Why this one is needed?
jam 2017/04/11 22:58:18 It's not, removed
26 ]
27
28 sources = [
29 "net_adapters.cc",
30 "net_adapters.h",
31 "network_context.cc",
32 "network_context.h",
33 "url_loader_impl.cc",
34 "url_loader_impl.h",
35 ]
36
37 configs += [ "//content:content_implementation" ]
38
39 deps = [
40 "//base",
41 "//content:export",
42 "//content/common",
43 "//content/common:mojo_bindings",
44 "//content/public/common:common_sources",
45 "//net",
46 "//services/service_manager/public/interfaces",
47 ]
48 }
OLDNEW
« no previous file with comments | « content/BUILD.gn ('k') | content/network/DEPS » ('j') | content/network/net_adapters.h » ('J')

Powered by Google App Engine
This is Rietveld 408576698