1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190
|
# Copyright 2014 The Chromium Authors. All rights reserved.
# Use of this source code is governed by a BSD-style license that can be
# found in the LICENSE file.
browser_sources = [
"data_reduction_proxy_bypass_protocol.cc",
"data_reduction_proxy_bypass_protocol.h",
"data_reduction_proxy_bypass_stats.cc",
"data_reduction_proxy_bypass_stats.h",
"data_reduction_proxy_compression_stats.cc",
"data_reduction_proxy_compression_stats.h",
"data_reduction_proxy_config.cc",
"data_reduction_proxy_config.h",
"data_reduction_proxy_config_service_client.cc",
"data_reduction_proxy_config_service_client.h",
"data_reduction_proxy_configurator.cc",
"data_reduction_proxy_configurator.h",
"data_reduction_proxy_data.cc",
"data_reduction_proxy_data.h",
"data_reduction_proxy_delegate.cc",
"data_reduction_proxy_delegate.h",
"data_reduction_proxy_interceptor.cc",
"data_reduction_proxy_interceptor.h",
"data_reduction_proxy_io_data.cc",
"data_reduction_proxy_io_data.h",
"data_reduction_proxy_metrics.cc",
"data_reduction_proxy_metrics.h",
"data_reduction_proxy_mutable_config_values.cc",
"data_reduction_proxy_mutable_config_values.h",
"data_reduction_proxy_network_delegate.cc",
"data_reduction_proxy_network_delegate.h",
"data_reduction_proxy_pingback_client.cc",
"data_reduction_proxy_pingback_client.h",
"data_reduction_proxy_prefs.cc",
"data_reduction_proxy_prefs.h",
"data_reduction_proxy_request_options.cc",
"data_reduction_proxy_request_options.h",
"data_reduction_proxy_service.cc",
"data_reduction_proxy_service.h",
"data_reduction_proxy_service_observer.h",
"data_reduction_proxy_settings.cc",
"data_reduction_proxy_settings.h",
"data_reduction_proxy_tamper_detection.cc",
"data_reduction_proxy_tamper_detection.h",
"data_store.cc",
"data_store.h",
"data_usage_store.cc",
"data_usage_store.h",
"db_data_owner.cc",
"db_data_owner.h",
]
if (is_android) {
static_library("browser_small") {
sources = browser_sources
deps = [
"//base",
"//components/data_reduction_proxy/core/common",
"//components/data_reduction_proxy/proto:data_reduction_proxy_proto",
"//components/data_use_measurement/core",
"//components/pref_registry",
"//components/prefs",
"//components/variations",
"//crypto",
"//google_apis",
"//net:net",
"//url:url",
]
}
}
static_library("browser") {
sources = browser_sources
sources += [
"data_store_impl.cc",
"data_store_impl.h",
]
public_deps = [
"//components/data_reduction_proxy/core/common",
"//components/data_reduction_proxy/proto:data_reduction_proxy_proto",
]
deps = [
"//base",
"//components/data_use_measurement/core",
"//components/pref_registry",
"//components/prefs",
"//components/variations",
"//crypto",
"//google_apis",
"//net",
"//third_party/leveldatabase",
"//url",
]
defines = [ "USE_GOOGLE_API_KEYS" ]
if (!is_ios) {
defines += [ "USE_GOOGLE_API_KEYS_FOR_AUTH_KEY" ]
}
}
static_library("test_support") {
testonly = true
sources = [
"data_reduction_proxy_config_test_utils.cc",
"data_reduction_proxy_config_test_utils.h",
"data_reduction_proxy_settings_test_utils.cc",
"data_reduction_proxy_settings_test_utils.h",
"data_reduction_proxy_test_utils.cc",
"data_reduction_proxy_test_utils.h",
]
configs += [ "//build/config/compiler:no_size_t_to_int_warning" ]
public_deps = [
":browser",
]
deps = [
"//base",
"//components/data_reduction_proxy/core/common",
"//components/data_reduction_proxy/core/common:test_support",
"//components/prefs:test_support",
"//net",
"//net:test_support",
"//testing/gmock",
"//testing/gtest",
]
}
bundle_data("unit_tests_bundle_data") {
visibility = [ ":unit_tests" ]
testonly = true
sources = [
"//components/test/data/data_reduction_proxy/direct/block10.html",
"//components/test/data/data_reduction_proxy/direct/block10.html.mock-http-headers",
"//components/test/data/data_reduction_proxy/direct/noblock.html",
"//components/test/data/data_reduction_proxy/direct/noblock.html.mock-http-headers",
"//components/test/data/data_reduction_proxy/proxy/block10.html",
"//components/test/data/data_reduction_proxy/proxy/block10.html.mock-http-headers",
"//components/test/data/data_reduction_proxy/proxy/noblock.html",
"//components/test/data/data_reduction_proxy/proxy/noblock.html.mock-http-headers",
]
outputs = [
"{{bundle_resources_dir}}/" +
"{{source_root_relative_dir}}/{{source_file_part}}",
]
}
source_set("unit_tests") {
testonly = true
sources = [
"data_reduction_proxy_bypass_protocol_unittest.cc",
"data_reduction_proxy_bypass_stats_unittest.cc",
"data_reduction_proxy_compression_stats_unittest.cc",
"data_reduction_proxy_config_service_client_unittest.cc",
"data_reduction_proxy_config_unittest.cc",
"data_reduction_proxy_configurator_unittest.cc",
"data_reduction_proxy_data_unittest.cc",
"data_reduction_proxy_delegate_unittest.cc",
"data_reduction_proxy_interceptor_unittest.cc",
"data_reduction_proxy_io_data_unittest.cc",
"data_reduction_proxy_metrics_unittest.cc",
"data_reduction_proxy_mutable_config_values_unittest.cc",
"data_reduction_proxy_network_delegate_unittest.cc",
"data_reduction_proxy_pingback_client_unittest.cc",
"data_reduction_proxy_prefs_unittest.cc",
"data_reduction_proxy_request_options_unittest.cc",
"data_reduction_proxy_settings_unittest.cc",
"data_reduction_proxy_tamper_detection_unittest.cc",
"data_usage_store_unittest.cc",
]
configs += [ "//build/config/compiler:no_size_t_to_int_warning" ]
deps = [
":browser",
":test_support",
":unit_tests_bundle_data",
"//base",
"//base/test:test_support",
"//components/data_reduction_proxy/core/common:test_support",
"//components/data_reduction_proxy/proto:data_reduction_proxy_proto",
"//components/prefs:test_support",
"//components/variations",
"//net:test_support",
"//testing/gmock",
"//testing/gtest",
]
}
|