| OLD | NEW |
| 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 } |
| OLD | NEW |