| 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_bypass_stats.cc", | 9 "data_reduction_proxy_bypass_stats.cc", |
| 10 "data_reduction_proxy_bypass_stats.h", | 10 "data_reduction_proxy_bypass_stats.h", |
| (...skipping 24 matching lines...) Expand all Loading... |
| 35 "data_reduction_proxy_network_delegate.h", | 35 "data_reduction_proxy_network_delegate.h", |
| 36 "data_reduction_proxy_prefs.cc", | 36 "data_reduction_proxy_prefs.cc", |
| 37 "data_reduction_proxy_prefs.h", | 37 "data_reduction_proxy_prefs.h", |
| 38 "data_reduction_proxy_request_options.cc", | 38 "data_reduction_proxy_request_options.cc", |
| 39 "data_reduction_proxy_request_options.h", | 39 "data_reduction_proxy_request_options.h", |
| 40 "data_reduction_proxy_service.cc", | 40 "data_reduction_proxy_service.cc", |
| 41 "data_reduction_proxy_service.h", | 41 "data_reduction_proxy_service.h", |
| 42 "data_reduction_proxy_service_observer.h", | 42 "data_reduction_proxy_service_observer.h", |
| 43 "data_reduction_proxy_settings.cc", | 43 "data_reduction_proxy_settings.cc", |
| 44 "data_reduction_proxy_settings.h", | 44 "data_reduction_proxy_settings.h", |
| 45 "data_reduction_proxy_store.cc", |
| 46 "data_reduction_proxy_store.h", |
| 47 "data_reduction_proxy_store_impl.cc", |
| 48 "data_reduction_proxy_store_impl.h", |
| 45 "data_reduction_proxy_tamper_detection.cc", | 49 "data_reduction_proxy_tamper_detection.cc", |
| 46 "data_reduction_proxy_tamper_detection.h", | 50 "data_reduction_proxy_tamper_detection.h", |
| 51 "data_usage_storage_helper.cc", |
| 52 "data_usage_storage_helper.h", |
| 47 ] | 53 ] |
| 48 | 54 |
| 49 deps = [ | 55 deps = [ |
| 50 "//base", | 56 "//base", |
| 51 "//base:prefs", | 57 "//base:prefs", |
| 52 "//components/data_reduction_proxy/core/common", | 58 "//components/data_reduction_proxy/core/common", |
| 53 "//components/data_reduction_proxy/proto:data_reduction_proxy_proto", | 59 "//components/data_reduction_proxy/proto:data_reduction_proxy_proto", |
| 54 "//components/pref_registry", | 60 "//components/pref_registry", |
| 55 "//crypto", | 61 "//crypto", |
| 56 "//net", | 62 "//net", |
| 63 "//third_party/leveldatabase", |
| 57 "//url", | 64 "//url", |
| 58 ] | 65 ] |
| 59 if (!is_android && !is_ios) { | 66 if (!is_android && !is_ios) { |
| 60 deps += [ "//google_apis" ] | 67 deps += [ "//google_apis" ] |
| 61 } | 68 } |
| 62 } | 69 } |
| 63 | 70 |
| 64 source_set("test_support") { | 71 source_set("test_support") { |
| 65 testonly = true | 72 testonly = true |
| 66 sources = [ | 73 sources = [ |
| (...skipping 52 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 119 "//base", | 126 "//base", |
| 120 "//base:prefs_test_support", | 127 "//base:prefs_test_support", |
| 121 "//base/test:test_support", | 128 "//base/test:test_support", |
| 122 "//components/data_reduction_proxy/core/common:test_support", | 129 "//components/data_reduction_proxy/core/common:test_support", |
| 123 "//components/data_reduction_proxy/proto:data_reduction_proxy_proto", | 130 "//components/data_reduction_proxy/proto:data_reduction_proxy_proto", |
| 124 "//net:test_support", | 131 "//net:test_support", |
| 125 "//testing/gmock", | 132 "//testing/gmock", |
| 126 "//testing/gtest", | 133 "//testing/gtest", |
| 127 ] | 134 ] |
| 128 } | 135 } |
| OLD | NEW |