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

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

Issue 2968293002: Introduce SystemNetworkContextManager. (Closed)
Patch Set: Response to comments Created 3 years, 5 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
« no previous file with comments | « content/public/browser/network_service_instance.cc ('k') | content/public/network/DEPS » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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 # See //content/BUILD.gn for how this works.
6 group("network") {
7 if (is_component_build) {
8 public_deps = [
9 "//content",
10 ]
11 } else {
12 public_deps = [
13 ":network_sources",
14 ]
15 }
16 }
17
18 target("source_set", "network_sources") {
19 visibility = [ "//content/*" ]
20
21 configs += [ "//content:content_implementation" ]
22
23 sources = [
24 "network_service.h",
25 ]
26
27 deps = [
28 "//base",
29 "//content:export",
30 "//content/common:mojo_bindings",
31 "//content/network:network_sources",
32 ]
33
34 allow_circular_includes_from = [ "//content/network:network_sources" ]
35 }
OLDNEW
« no previous file with comments | « content/public/browser/network_service_instance.cc ('k') | content/public/network/DEPS » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698