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_config_service.cc", | 9 "data_reduction_proxy_config_service.cc", |
10 "data_reduction_proxy_config_service.h", | 10 "data_reduction_proxy_config_service.h", |
11 "data_reduction_proxy_configurator.h", | 11 "data_reduction_proxy_configurator.h", |
12 "data_reduction_proxy_metrics.cc", | 12 "data_reduction_proxy_metrics.cc", |
13 "data_reduction_proxy_metrics.h", | 13 "data_reduction_proxy_metrics.h", |
14 "data_reduction_proxy_params.cc", | 14 "data_reduction_proxy_params.cc", |
15 "data_reduction_proxy_params.h", | 15 "data_reduction_proxy_params.h", |
16 "data_reduction_proxy_prefs.cc", | 16 "data_reduction_proxy_prefs.cc", |
17 "data_reduction_proxy_prefs.h", | 17 "data_reduction_proxy_prefs.h", |
18 "data_reduction_proxy_protocol.cc", | 18 "data_reduction_proxy_protocol.cc", |
19 "data_reduction_proxy_protocol.h", | 19 "data_reduction_proxy_protocol.h", |
20 "data_reduction_proxy_settings.cc", | 20 "data_reduction_proxy_settings.cc", |
21 "data_reduction_proxy_settings.h", | 21 "data_reduction_proxy_settings.h", |
| 22 "data_reduction_proxy_tamper_detection.cc", |
| 23 "data_reduction_proxy_tamper_detection.h", |
22 "data_reduction_proxy_usage_stats.cc", | 24 "data_reduction_proxy_usage_stats.cc", |
23 "data_reduction_proxy_usage_stats.h", | 25 "data_reduction_proxy_usage_stats.h", |
24 ] | 26 ] |
25 | 27 |
26 deps = [ | 28 deps = [ |
27 "//base", | 29 "//base", |
28 "//components/data_reduction_proxy/common", | 30 "//components/data_reduction_proxy/common", |
29 "//components/pref_registry", | 31 "//components/pref_registry", |
30 "//crypto", | 32 "//crypto", |
31 "//net", | 33 "//net", |
(...skipping 30 matching lines...) Expand all Loading... |
62 "data_reduction_proxy_usage_stats_unittest.cc", | 64 "data_reduction_proxy_usage_stats_unittest.cc", |
63 ] | 65 ] |
64 | 66 |
65 deps = [ | 67 deps = [ |
66 ":browser", | 68 ":browser", |
67 ":test_support", | 69 ":test_support", |
68 "//testing/gmock", | 70 "//testing/gmock", |
69 "//testing/gtest", | 71 "//testing/gtest", |
70 ] | 72 ] |
71 } | 73 } |
OLD | NEW |