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

Unified Diff: components/network_session_configurator/BUILD.gn

Issue 1892123003: Add components/network_session_configurator. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Rebase on https://crrev.com/1945513002. Created 4 years, 7 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 | « components/network_session_configurator.gypi ('k') | components/network_session_configurator/DEPS » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: components/network_session_configurator/BUILD.gn
diff --git a/components/network_session_configurator/BUILD.gn b/components/network_session_configurator/BUILD.gn
new file mode 100644
index 0000000000000000000000000000000000000000..fcbd106ef731654124387a09ecf52cbc08940671
--- /dev/null
+++ b/components/network_session_configurator/BUILD.gn
@@ -0,0 +1,46 @@
+# Copyright 2016 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.
+
+# GYP version:
+# components/components.gyp:network_session_configurator
+source_set("network_session_configurator") {
+ sources = [
+ "network_session_configurator.cc",
+ "network_session_configurator.h",
+ ]
+
+ public_deps = [
+ ":switches",
+ "//base",
+ "//net",
+ ]
+
+ deps = [
+ "//components/data_reduction_proxy/core/common",
+ "//components/variations",
+ "//components/version_info",
+ ]
+}
+
+# GYP version:
+# components/components.gyp:network_session_configurator_switches
+source_set("switches") {
+ sources = [
+ "switches.cc",
+ "switches.h",
+ ]
+}
+
+source_set("unit_tests") {
+ testonly = true
+ sources = [
+ "network_session_configurator_unittest.cc",
+ ]
+ deps = [
+ ":network_session_configurator",
+ "//base/test:test_support",
+ "//components/variations:variations",
+ "//testing/gtest",
+ ]
+}
« no previous file with comments | « components/network_session_configurator.gypi ('k') | components/network_session_configurator/DEPS » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698