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

Side by Side Diff: components/network_session_configurator/BUILD.gn

Issue 2173443003: Convert some component source sets to static library (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: mac Created 4 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 | « components/network_hints/renderer/BUILD.gn ('k') | components/ntp_snippets/BUILD.gn » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 # Copyright 2016 The Chromium Authors. All rights reserved. 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 2 # Use of this source code is governed by a BSD-style license that can be
3 # found in the LICENSE file. 3 # found in the LICENSE file.
4 4
5 # GYP version: 5 # GYP version:
6 # components/components.gyp:network_session_configurator 6 # components/components.gyp:network_session_configurator
7 source_set("network_session_configurator") { 7 static_library("network_session_configurator") {
8 sources = [ 8 sources = [
9 "network_session_configurator.cc", 9 "network_session_configurator.cc",
10 "network_session_configurator.h", 10 "network_session_configurator.h",
11 ] 11 ]
12 12
13 public_deps = [ 13 public_deps = [
14 ":switches", 14 ":switches",
15 "//base", 15 "//base",
16 "//net", 16 "//net",
17 ] 17 ]
18 18
19 deps = [ 19 deps = [
20 "//components/data_reduction_proxy/core/common", 20 "//components/data_reduction_proxy/core/common",
21 "//components/variations", 21 "//components/variations",
22 "//components/version_info", 22 "//components/version_info",
23 ] 23 ]
24 } 24 }
25 25
26 # GYP version: 26 # GYP version:
27 # components/components.gyp:network_session_configurator_switches 27 # components/components.gyp:network_session_configurator_switches
28 source_set("switches") { 28 static_library("switches") {
29 sources = [ 29 sources = [
30 "switches.cc", 30 "switches.cc",
31 "switches.h", 31 "switches.h",
32 ] 32 ]
33 } 33 }
34 34
35 source_set("unit_tests") { 35 source_set("unit_tests") {
36 testonly = true 36 testonly = true
37 sources = [ 37 sources = [
38 "network_session_configurator_unittest.cc", 38 "network_session_configurator_unittest.cc",
39 ] 39 ]
40 deps = [ 40 deps = [
41 ":network_session_configurator", 41 ":network_session_configurator",
42 "//base/test:test_support", 42 "//base/test:test_support",
43 "//components/variations:variations", 43 "//components/variations:variations",
44 "//testing/gtest", 44 "//testing/gtest",
45 ] 45 ]
46 } 46 }
OLDNEW
« no previous file with comments | « components/network_hints/renderer/BUILD.gn ('k') | components/ntp_snippets/BUILD.gn » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698