OLD | NEW |
1 # Copyright 2014 The Chromium Authors. All rights reserved. | 1 # Copyright 2014 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 static_library("browser") { | 5 static_library("browser") { |
6 sources = [ | 6 sources = [ |
7 "data_reduction_proxy_auth_request_handler.cc", | 7 "data_reduction_proxy_auth_request_handler.cc", |
8 "data_reduction_proxy_auth_request_handler.h", | 8 "data_reduction_proxy_auth_request_handler.h", |
9 "data_reduction_proxy_bypass_protocol.cc", | 9 "data_reduction_proxy_bypass_protocol.cc", |
10 "data_reduction_proxy_bypass_protocol.h", | 10 "data_reduction_proxy_bypass_protocol.h", |
(...skipping 39 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
50 | 50 |
51 source_set("test_support") { | 51 source_set("test_support") { |
52 testonly = true | 52 testonly = true |
53 sources = [ | 53 sources = [ |
54 "data_reduction_proxy_config_test_utils.cc", | 54 "data_reduction_proxy_config_test_utils.cc", |
55 "data_reduction_proxy_config_test_utils.h", | 55 "data_reduction_proxy_config_test_utils.h", |
56 "data_reduction_proxy_configurator_test_utils.cc", | 56 "data_reduction_proxy_configurator_test_utils.cc", |
57 "data_reduction_proxy_configurator_test_utils.h", | 57 "data_reduction_proxy_configurator_test_utils.h", |
58 "data_reduction_proxy_settings_test_utils.cc", | 58 "data_reduction_proxy_settings_test_utils.cc", |
59 "data_reduction_proxy_settings_test_utils.h", | 59 "data_reduction_proxy_settings_test_utils.h", |
| 60 "data_reduction_proxy_test_utils.cc", |
| 61 "data_reduction_proxy_test_utils.h", |
60 ] | 62 ] |
61 | 63 |
62 public_deps = [ | 64 public_deps = [ |
63 ":browser", | 65 ":browser", |
64 ] | 66 ] |
65 deps = [ | 67 deps = [ |
66 "//base", | 68 "//base", |
67 "//base:prefs_test_support", | 69 "//base:prefs_test_support", |
68 "//components/data_reduction_proxy/core/common", | 70 "//components/data_reduction_proxy/core/common", |
69 "//components/data_reduction_proxy/core/common:test_support", | 71 "//components/data_reduction_proxy/core/common:test_support", |
(...skipping 24 matching lines...) Expand all Loading... |
94 ":test_support", | 96 ":test_support", |
95 "//base", | 97 "//base", |
96 "//base:prefs_test_support", | 98 "//base:prefs_test_support", |
97 "//base/test:test_support", | 99 "//base/test:test_support", |
98 "//components/data_reduction_proxy/core/common:test_support", | 100 "//components/data_reduction_proxy/core/common:test_support", |
99 "//net:test_support", | 101 "//net:test_support", |
100 "//testing/gmock", | 102 "//testing/gmock", |
101 "//testing/gtest", | 103 "//testing/gtest", |
102 ] | 104 ] |
103 } | 105 } |
OLD | NEW |