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

Unified 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 side-by-side diff with in-line comments
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 »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: content/public/network/BUILD.gn
diff --git a/content/public/network/BUILD.gn b/content/public/network/BUILD.gn
new file mode 100644
index 0000000000000000000000000000000000000000..3e44f510832d20db8e9fb1a4f9ae5880a2e1a469
--- /dev/null
+++ b/content/public/network/BUILD.gn
@@ -0,0 +1,35 @@
+# Copyright 2017 The Chromium Authors. All rights reserved.
+# Use of this source code is governed by a BSD-style license that can be
+# found in the LICENSE file.
+
+# See //content/BUILD.gn for how this works.
+group("network") {
+ if (is_component_build) {
+ public_deps = [
+ "//content",
+ ]
+ } else {
+ public_deps = [
+ ":network_sources",
+ ]
+ }
+}
+
+target("source_set", "network_sources") {
+ visibility = [ "//content/*" ]
+
+ configs += [ "//content:content_implementation" ]
+
+ sources = [
+ "network_service.h",
+ ]
+
+ deps = [
+ "//base",
+ "//content:export",
+ "//content/common:mojo_bindings",
+ "//content/network:network_sources",
+ ]
+
+ allow_circular_includes_from = [ "//content/network:network_sources" ]
+}
« 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