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_bypass_protocol.cc", | 7 "data_reduction_proxy_bypass_protocol.cc", |
8 "data_reduction_proxy_bypass_protocol.h", | 8 "data_reduction_proxy_bypass_protocol.h", |
9 "data_reduction_proxy_config.cc", | 9 "data_reduction_proxy_config.cc", |
10 "data_reduction_proxy_config.h", | 10 "data_reduction_proxy_config.h", |
(...skipping 15 matching lines...) Expand all Loading... |
26 "data_reduction_proxy_request_options.cc", | 26 "data_reduction_proxy_request_options.cc", |
27 "data_reduction_proxy_request_options.h", | 27 "data_reduction_proxy_request_options.h", |
28 "data_reduction_proxy_settings.cc", | 28 "data_reduction_proxy_settings.cc", |
29 "data_reduction_proxy_settings.h", | 29 "data_reduction_proxy_settings.h", |
30 "data_reduction_proxy_statistics_prefs.cc", | 30 "data_reduction_proxy_statistics_prefs.cc", |
31 "data_reduction_proxy_statistics_prefs.h", | 31 "data_reduction_proxy_statistics_prefs.h", |
32 "data_reduction_proxy_tamper_detection.cc", | 32 "data_reduction_proxy_tamper_detection.cc", |
33 "data_reduction_proxy_tamper_detection.h", | 33 "data_reduction_proxy_tamper_detection.h", |
34 "data_reduction_proxy_usage_stats.cc", | 34 "data_reduction_proxy_usage_stats.cc", |
35 "data_reduction_proxy_usage_stats.h", | 35 "data_reduction_proxy_usage_stats.h", |
| 36 "data_saver_service.cc", |
| 37 "data_saver_service.h", |
36 ] | 38 ] |
37 | 39 |
38 deps = [ | 40 deps = [ |
39 "//base", | 41 "//base", |
40 "//base:prefs", | 42 "//base:prefs", |
41 "//components/data_reduction_proxy/core/common", | 43 "//components/data_reduction_proxy/core/common", |
42 "//components/pref_registry", | 44 "//components/pref_registry", |
43 "//crypto", | 45 "//crypto", |
44 "//net", | 46 "//net", |
45 "//url", | 47 "//url", |
46 ] | 48 ] |
47 if (!is_android && !is_ios) { | 49 if (!is_android && !is_ios) { |
48 deps += [ "//google_apis" ] | 50 deps += [ "//google_apis" ] |
49 } | 51 } |
50 } | 52 } |
51 | 53 |
52 source_set("test_support") { | 54 source_set("test_support") { |
53 testonly = true | 55 testonly = true |
54 sources = [ | 56 sources = [ |
55 "data_reduction_proxy_config_test_utils.cc", | 57 "data_reduction_proxy_config_test_utils.cc", |
56 "data_reduction_proxy_config_test_utils.h", | 58 "data_reduction_proxy_config_test_utils.h", |
57 "data_reduction_proxy_configurator_test_utils.cc", | 59 "data_reduction_proxy_configurator_test_utils.cc", |
58 "data_reduction_proxy_configurator_test_utils.h", | 60 "data_reduction_proxy_configurator_test_utils.h", |
59 "data_reduction_proxy_settings_test_utils.cc", | 61 "data_reduction_proxy_settings_test_utils.cc", |
60 "data_reduction_proxy_settings_test_utils.h", | 62 "data_reduction_proxy_settings_test_utils.h", |
| 63 "data_reduction_proxy_test_utils.cc", |
| 64 "data_reduction_proxy_test_utils.h", |
61 ] | 65 ] |
62 | 66 |
63 public_deps = [ | 67 public_deps = [ |
64 ":browser", | 68 ":browser", |
65 ] | 69 ] |
66 deps = [ | 70 deps = [ |
67 "//base", | 71 "//base", |
68 "//base:prefs_test_support", | 72 "//base:prefs_test_support", |
69 "//components/data_reduction_proxy/core/common", | 73 "//components/data_reduction_proxy/core/common", |
70 "//components/data_reduction_proxy/core/common:test_support", | 74 "//components/data_reduction_proxy/core/common:test_support", |
(...skipping 24 matching lines...) Expand all Loading... |
95 ":test_support", | 99 ":test_support", |
96 "//base", | 100 "//base", |
97 "//base:prefs_test_support", | 101 "//base:prefs_test_support", |
98 "//base/test:test_support", | 102 "//base/test:test_support", |
99 "//components/data_reduction_proxy/core/common:test_support", | 103 "//components/data_reduction_proxy/core/common:test_support", |
100 "//net:test_support", | 104 "//net:test_support", |
101 "//testing/gmock", | 105 "//testing/gmock", |
102 "//testing/gtest", | 106 "//testing/gtest", |
103 ] | 107 ] |
104 } | 108 } |
OLD | NEW |