Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(609)

Side by Side Diff: components/data_reduction_proxy/core/browser/BUILD.gn

Issue 2864333003: Use the Previews Black List for server previews (Closed)
Patch Set: deps change Created 3 years, 7 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
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 43 matching lines...) Expand 10 before | Expand all | Expand 10 after
54 static_library("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/data_use_measurement/core", 61 "//components/data_use_measurement/core",
62 "//components/pref_registry", 62 "//components/pref_registry",
63 "//components/prefs", 63 "//components/prefs",
64 "//components/previews/core",
64 "//components/variations", 65 "//components/variations",
65 "//crypto", 66 "//crypto",
66 "//google_apis", 67 "//google_apis",
67 "//net:net", 68 "//net:net",
68 "//url:url", 69 "//url:url",
69 ] 70 ]
70 } 71 }
71 } 72 }
72 73
73 static_library("browser") { 74 static_library("browser") {
74 sources = browser_sources 75 sources = browser_sources
75 sources += [ 76 sources += [
76 "data_store_impl.cc", 77 "data_store_impl.cc",
77 "data_store_impl.h", 78 "data_store_impl.h",
78 ] 79 ]
79 80
80 public_deps = [ 81 public_deps = [
81 "//components/data_reduction_proxy/core/common", 82 "//components/data_reduction_proxy/core/common",
82 "//components/data_reduction_proxy/proto:data_reduction_proxy_proto", 83 "//components/data_reduction_proxy/proto:data_reduction_proxy_proto",
83 ] 84 ]
84 deps = [ 85 deps = [
85 "//base", 86 "//base",
86 "//components/data_use_measurement/core", 87 "//components/data_use_measurement/core",
87 "//components/pref_registry", 88 "//components/pref_registry",
88 "//components/prefs", 89 "//components/prefs",
90 "//components/previews/core",
89 "//components/variations", 91 "//components/variations",
90 "//crypto", 92 "//crypto",
91 "//google_apis", 93 "//google_apis",
92 "//net", 94 "//net",
93 "//third_party/leveldatabase", 95 "//third_party/leveldatabase",
94 "//url", 96 "//url",
95 ] 97 ]
96 98
97 defines = [ "USE_GOOGLE_API_KEYS" ] 99 defines = [ "USE_GOOGLE_API_KEYS" ]
98 if (!is_ios) { 100 if (!is_ios) {
(...skipping 76 matching lines...) Expand 10 before | Expand all | Expand 10 after
175 177
176 deps = [ 178 deps = [
177 ":browser", 179 ":browser",
178 ":test_support", 180 ":test_support",
179 ":unit_tests_bundle_data", 181 ":unit_tests_bundle_data",
180 "//base", 182 "//base",
181 "//base/test:test_support", 183 "//base/test:test_support",
182 "//components/data_reduction_proxy/core/common:test_support", 184 "//components/data_reduction_proxy/core/common:test_support",
183 "//components/data_reduction_proxy/proto:data_reduction_proxy_proto", 185 "//components/data_reduction_proxy/proto:data_reduction_proxy_proto",
184 "//components/prefs:test_support", 186 "//components/prefs:test_support",
187 "//components/previews/core",
185 "//components/variations", 188 "//components/variations",
186 "//net:test_support", 189 "//net:test_support",
187 "//testing/gmock", 190 "//testing/gmock",
188 "//testing/gtest", 191 "//testing/gtest",
189 ] 192 ]
190 } 193 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698