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

Side by Side Diff: components/safe_browsing_db/BUILD.gn

Issue 1895743002: Revert of Safe Browsing: CheckApiBlacklist request implementation (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 4 years, 8 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
« no previous file with comments | « components/components_tests.gyp ('k') | components/safe_browsing_db/DEPS » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 # Copyright 2015 The Chromium Authors. All rights reserved. 1 # Copyright 2015 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 import("//third_party/protobuf/proto_library.gni") 5 import("//third_party/protobuf/proto_library.gni")
6 6
7 proto_library("proto") { 7 proto_library("proto") {
8 sources = [ 8 sources = [
9 "safebrowsing.proto", 9 "safebrowsing.proto",
10 ] 10 ]
(...skipping 184 matching lines...) Expand 10 before | Expand all | Expand 10 after
195 ":v4_protocol_manager_util", 195 ":v4_protocol_manager_util",
196 "//base", 196 "//base",
197 "//net", 197 "//net",
198 "//url:url", 198 "//url:url",
199 ] 199 ]
200 } 200 }
201 201
202 source_set("unit_tests") { 202 source_set("unit_tests") {
203 testonly = true 203 testonly = true
204 sources = [ 204 sources = [
205 "database_manager_unittest.cc",
206 "prefix_set_unittest.cc", 205 "prefix_set_unittest.cc",
207 "util_unittest.cc", 206 "util_unittest.cc",
208 "v4_get_hash_protocol_manager_unittest.cc", 207 "v4_get_hash_protocol_manager_unittest.cc",
209 "v4_protocol_manager_util_unittest.cc", 208 "v4_protocol_manager_util_unittest.cc",
210 "v4_update_protocol_manager_unittest.cc", 209 "v4_update_protocol_manager_unittest.cc",
211 ] 210 ]
212 deps = [ 211 deps = [
213 ":database_manager",
214 ":prefix_set", 212 ":prefix_set",
215 ":proto", 213 ":proto",
216 ":test_database_manager",
217 ":util", 214 ":util",
218 ":v4_get_hash_protocol_manager", 215 ":v4_get_hash_protocol_manager",
219 ":v4_protocol_manager_util", 216 ":v4_protocol_manager_util",
220 ":v4_update_protocol_manager", 217 ":v4_update_protocol_manager",
221 "//base", 218 "//base",
222 "//content/test:test_support",
223 "//net", 219 "//net",
224 "//net:test_support", 220 "//net:test_support",
225 "//testing/gtest", 221 "//testing/gtest",
226 "//url", 222 "//url",
227 ] 223 ]
228 if (is_win) { 224 if (is_win) {
229 # TODO(jschuh): crbug.com/167187 fix size_t to int truncations. 225 # TODO(jschuh): crbug.com/167187 fix size_t to int truncations.
230 cflags = [ "/wd4267" ] # Conversion from size_t to 'type'. 226 cflags = [ "/wd4267" ] # Conversion from size_t to 'type'.
231 } 227 }
232 } 228 }
(...skipping 13 matching lines...) Expand all
246 "//base", 242 "//base",
247 "//components/variations", 243 "//components/variations",
248 "//testing/gtest", 244 "//testing/gtest",
249 "//url", 245 "//url",
250 ] 246 ]
251 if (is_win) { 247 if (is_win) {
252 # TODO(jschuh): crbug.com/167187 fix size_t to int truncations. 248 # TODO(jschuh): crbug.com/167187 fix size_t to int truncations.
253 cflags = [ "/wd4267" ] # Conversion from size_t to 'type'. 249 cflags = [ "/wd4267" ] # Conversion from size_t to 'type'.
254 } 250 }
255 } 251 }
OLDNEW
« no previous file with comments | « components/components_tests.gyp ('k') | components/safe_browsing_db/DEPS » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698