| 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 browser_sources = [ | 5 browser_sources = [ |
| 6 "data_reduction_proxy_bypass_protocol.cc", | 6 "data_reduction_proxy_bypass_protocol.cc", |
| 7 "data_reduction_proxy_bypass_protocol.h", | 7 "data_reduction_proxy_bypass_protocol.h", |
| 8 "data_reduction_proxy_bypass_stats.cc", | 8 "data_reduction_proxy_bypass_stats.cc", |
| 9 "data_reduction_proxy_bypass_stats.h", | 9 "data_reduction_proxy_bypass_stats.h", |
| 10 "data_reduction_proxy_compression_stats.cc", | 10 "data_reduction_proxy_compression_stats.cc", |
| (...skipping 33 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 44 "data_reduction_proxy_tamper_detection.h", | 44 "data_reduction_proxy_tamper_detection.h", |
| 45 "data_store.cc", | 45 "data_store.cc", |
| 46 "data_store.h", | 46 "data_store.h", |
| 47 "data_usage_store.cc", | 47 "data_usage_store.cc", |
| 48 "data_usage_store.h", | 48 "data_usage_store.h", |
| 49 "db_data_owner.cc", | 49 "db_data_owner.cc", |
| 50 "db_data_owner.h", | 50 "db_data_owner.h", |
| 51 ] | 51 ] |
| 52 | 52 |
| 53 if (is_android) { | 53 if (is_android) { |
| 54 source_set("browser_small") { | 54 static_library("browser_small") { |
| 55 sources = browser_sources | 55 sources = browser_sources |
| 56 | 56 |
| 57 deps = [ | 57 deps = [ |
| 58 "//base", | 58 "//base", |
| 59 "//components/data_reduction_proxy/core/common", | 59 "//components/data_reduction_proxy/core/common", |
| 60 "//components/data_reduction_proxy/proto:data_reduction_proxy_proto", | 60 "//components/data_reduction_proxy/proto:data_reduction_proxy_proto", |
| 61 "//components/pref_registry", | 61 "//components/pref_registry", |
| 62 "//components/prefs", | 62 "//components/prefs", |
| 63 "//components/variations", | 63 "//components/variations", |
| 64 "//crypto", | 64 "//crypto", |
| 65 "//google_apis", | 65 "//google_apis", |
| 66 "//net:net", | 66 "//net:net", |
| 67 "//url:url", | 67 "//url:url", |
| 68 ] | 68 ] |
| 69 } | 69 } |
| 70 } | 70 } |
| 71 | 71 |
| 72 source_set("browser") { | 72 static_library("browser") { |
| 73 sources = browser_sources | 73 sources = browser_sources |
| 74 sources += [ | 74 sources += [ |
| 75 "data_store_impl.cc", | 75 "data_store_impl.cc", |
| 76 "data_store_impl.h", | 76 "data_store_impl.h", |
| 77 ] | 77 ] |
| 78 | 78 |
| 79 deps = [ | 79 deps = [ |
| 80 "//base", | 80 "//base", |
| 81 "//components/data_reduction_proxy/core/common", | 81 "//components/data_reduction_proxy/core/common", |
| 82 "//components/data_reduction_proxy/proto:data_reduction_proxy_proto", | 82 "//components/data_reduction_proxy/proto:data_reduction_proxy_proto", |
| (...skipping 94 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 177 "//base/test:test_support", | 177 "//base/test:test_support", |
| 178 "//components/data_reduction_proxy/core/common:test_support", | 178 "//components/data_reduction_proxy/core/common:test_support", |
| 179 "//components/data_reduction_proxy/proto:data_reduction_proxy_proto", | 179 "//components/data_reduction_proxy/proto:data_reduction_proxy_proto", |
| 180 "//components/prefs:test_support", | 180 "//components/prefs:test_support", |
| 181 "//components/variations", | 181 "//components/variations", |
| 182 "//net:test_support", | 182 "//net:test_support", |
| 183 "//testing/gmock", | 183 "//testing/gmock", |
| 184 "//testing/gtest", | 184 "//testing/gtest", |
| 185 ] | 185 ] |
| 186 } | 186 } |
| OLD | NEW |