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

Side by Side 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 unified diff | Download patch
OLDNEW
(Empty)
1 # Copyright 2016 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 # GYP version:
6 # components/components.gyp:network_session_configurator
7 source_set("network_session_configurator") {
8 sources = [
9 "network_session_configurator.cc",
10 "network_session_configurator.h",
11 ]
12
13 public_deps = [
14 ":switches",
15 "//base",
16 "//net",
17 ]
18
19 deps = [
20 "//components/data_reduction_proxy/core/common",
21 "//components/variations",
22 "//components/version_info",
23 ]
24 }
25
26 # GYP version:
27 # components/components.gyp:network_session_configurator_switches
28 source_set("switches") {
29 sources = [
30 "switches.cc",
31 "switches.h",
32 ]
33 }
34
35 source_set("unit_tests") {
36 testonly = true
37 sources = [
38 "network_session_configurator_unittest.cc",
39 ]
40 deps = [
41 ":network_session_configurator",
42 "//base/test:test_support",
43 "//components/variations:variations",
44 "//testing/gtest",
45 ]
46 }
OLDNEW
« 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