| 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", |
| 11 "data_reduction_proxy_config_service_client.cc", | |
| 12 "data_reduction_proxy_config_service_client.h", | |
| 13 "data_reduction_proxy_configurator.cc", | 11 "data_reduction_proxy_configurator.cc", |
| 14 "data_reduction_proxy_configurator.h", | 12 "data_reduction_proxy_configurator.h", |
| 15 "data_reduction_proxy_debug_ui_service.h", | 13 "data_reduction_proxy_debug_ui_service.h", |
| 16 "data_reduction_proxy_delegate.cc", | 14 "data_reduction_proxy_delegate.cc", |
| 17 "data_reduction_proxy_delegate.h", | 15 "data_reduction_proxy_delegate.h", |
| 18 "data_reduction_proxy_interceptor.cc", | 16 "data_reduction_proxy_interceptor.cc", |
| 19 "data_reduction_proxy_interceptor.h", | 17 "data_reduction_proxy_interceptor.h", |
| 20 "data_reduction_proxy_io_data.cc", | 18 "data_reduction_proxy_io_data.cc", |
| 21 "data_reduction_proxy_io_data.h", | 19 "data_reduction_proxy_io_data.h", |
| 22 "data_reduction_proxy_metrics.cc", | 20 "data_reduction_proxy_metrics.cc", |
| (...skipping 13 matching lines...) Expand all Loading... |
| 36 "data_reduction_proxy_tamper_detection.cc", | 34 "data_reduction_proxy_tamper_detection.cc", |
| 37 "data_reduction_proxy_tamper_detection.h", | 35 "data_reduction_proxy_tamper_detection.h", |
| 38 "data_reduction_proxy_usage_stats.cc", | 36 "data_reduction_proxy_usage_stats.cc", |
| 39 "data_reduction_proxy_usage_stats.h", | 37 "data_reduction_proxy_usage_stats.h", |
| 40 ] | 38 ] |
| 41 | 39 |
| 42 deps = [ | 40 deps = [ |
| 43 "//base", | 41 "//base", |
| 44 "//base:prefs", | 42 "//base:prefs", |
| 45 "//components/data_reduction_proxy/core/common", | 43 "//components/data_reduction_proxy/core/common", |
| 46 "//components/data_reduction_proxy/proto:data_reduction_proxy_proto", | |
| 47 "//components/pref_registry", | 44 "//components/pref_registry", |
| 48 "//crypto", | 45 "//crypto", |
| 49 "//net", | 46 "//net", |
| 50 "//url", | 47 "//url", |
| 51 ] | 48 ] |
| 52 if (!is_android && !is_ios) { | 49 if (!is_android && !is_ios) { |
| 53 deps += [ "//google_apis" ] | 50 deps += [ "//google_apis" ] |
| 54 } | 51 } |
| 55 } | 52 } |
| 56 | 53 |
| (...skipping 24 matching lines...) Expand all Loading... |
| 81 "//net:test_support", | 78 "//net:test_support", |
| 82 "//testing/gmock", | 79 "//testing/gmock", |
| 83 "//testing/gtest", | 80 "//testing/gtest", |
| 84 ] | 81 ] |
| 85 } | 82 } |
| 86 | 83 |
| 87 source_set("unit_tests") { | 84 source_set("unit_tests") { |
| 88 testonly = true | 85 testonly = true |
| 89 sources = [ | 86 sources = [ |
| 90 "data_reduction_proxy_bypass_protocol_unittest.cc", | 87 "data_reduction_proxy_bypass_protocol_unittest.cc", |
| 91 "data_reduction_proxy_config_service_client_unittest.cc", | |
| 92 "data_reduction_proxy_config_unittest.cc", | 88 "data_reduction_proxy_config_unittest.cc", |
| 93 "data_reduction_proxy_configurator_unittest.cc", | 89 "data_reduction_proxy_configurator_unittest.cc", |
| 94 "data_reduction_proxy_interceptor_unittest.cc", | 90 "data_reduction_proxy_interceptor_unittest.cc", |
| 95 "data_reduction_proxy_metrics_unittest.cc", | 91 "data_reduction_proxy_metrics_unittest.cc", |
| 96 "data_reduction_proxy_network_delegate_unittest.cc", | 92 "data_reduction_proxy_network_delegate_unittest.cc", |
| 97 "data_reduction_proxy_prefs_unittest.cc", | 93 "data_reduction_proxy_prefs_unittest.cc", |
| 98 "data_reduction_proxy_request_options_unittest.cc", | 94 "data_reduction_proxy_request_options_unittest.cc", |
| 99 "data_reduction_proxy_settings_unittest.cc", | 95 "data_reduction_proxy_settings_unittest.cc", |
| 100 "data_reduction_proxy_usage_stats_unittest.cc", | 96 "data_reduction_proxy_usage_stats_unittest.cc", |
| 101 ] | 97 ] |
| 102 | 98 |
| 103 configs += [ "//build/config/compiler:no_size_t_to_int_warning" ] | 99 configs += [ "//build/config/compiler:no_size_t_to_int_warning" ] |
| 104 | 100 |
| 105 deps = [ | 101 deps = [ |
| 106 ":browser", | 102 ":browser", |
| 107 ":test_support", | 103 ":test_support", |
| 108 "//base", | 104 "//base", |
| 109 "//base:prefs_test_support", | 105 "//base:prefs_test_support", |
| 110 "//base/test:test_support", | 106 "//base/test:test_support", |
| 111 "//components/data_reduction_proxy/core/common:test_support", | 107 "//components/data_reduction_proxy/core/common:test_support", |
| 112 "//components/data_reduction_proxy/proto:data_reduction_proxy_proto", | |
| 113 "//net:test_support", | 108 "//net:test_support", |
| 114 "//testing/gmock", | 109 "//testing/gmock", |
| 115 "//testing/gtest", | 110 "//testing/gtest", |
| 116 ] | 111 ] |
| 117 } | 112 } |
| OLD | NEW |