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

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

Issue 2206733002: PVer4: Verify checksum for downloaded updates (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@01_v4_rice_store
Patch Set: XXS: Added a DCHECK for PARTIAL_UPDATE in ProcessPartialUpdate Created 4 years, 4 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 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("safebrowsing_proto") { 7 proto_library("safebrowsing_proto") {
8 sources = [ 8 sources = [
9 "safebrowsing.proto", 9 "safebrowsing.proto",
10 ] 10 ]
(...skipping 238 matching lines...) Expand 10 before | Expand all | Expand 10 after
249 "v4_store.h", 249 "v4_store.h",
250 ] 250 ]
251 public_deps = [ 251 public_deps = [
252 ":safebrowsing_proto", 252 ":safebrowsing_proto",
253 ":v4_store_proto", 253 ":v4_store_proto",
254 ] 254 ]
255 deps = [ 255 deps = [
256 ":v4_protocol_manager_util", 256 ":v4_protocol_manager_util",
257 ":v4_rice", 257 ":v4_rice",
258 "//base", 258 "//base",
259 "//crypto",
259 ] 260 ]
260 } 261 }
261 262
262 static_library("v4_update_protocol_manager") { 263 static_library("v4_update_protocol_manager") {
263 sources = [ 264 sources = [
264 "v4_update_protocol_manager.cc", 265 "v4_update_protocol_manager.cc",
265 "v4_update_protocol_manager.h", 266 "v4_update_protocol_manager.h",
266 ] 267 ]
267 deps = [ 268 deps = [
268 ":safebrowsing_proto", 269 ":safebrowsing_proto",
(...skipping 27 matching lines...) Expand all
296 ":v4_database", 297 ":v4_database",
297 ":v4_get_hash_protocol_manager", 298 ":v4_get_hash_protocol_manager",
298 ":v4_local_database_manager", 299 ":v4_local_database_manager",
299 ":v4_protocol_manager_util", 300 ":v4_protocol_manager_util",
300 ":v4_rice", 301 ":v4_rice",
301 ":v4_store", 302 ":v4_store",
302 ":v4_store_proto", 303 ":v4_store_proto",
303 ":v4_update_protocol_manager", 304 ":v4_update_protocol_manager",
304 "//base", 305 "//base",
305 "//content/test:test_support", 306 "//content/test:test_support",
307 "//crypto",
306 "//net", 308 "//net",
307 "//net:test_support", 309 "//net:test_support",
308 "//testing/gtest", 310 "//testing/gtest",
309 "//url", 311 "//url",
310 ] 312 ]
311 if (is_win) { 313 if (is_win) {
312 # TODO(jschuh): crbug.com/167187 fix size_t to int truncations. 314 # TODO(jschuh): crbug.com/167187 fix size_t to int truncations.
313 cflags = [ "/wd4267" ] # Conversion from size_t to 'type'. 315 cflags = [ "/wd4267" ] # Conversion from size_t to 'type'.
314 } 316 }
315 } 317 }
(...skipping 13 matching lines...) Expand all
329 "//base", 331 "//base",
330 "//components/variations", 332 "//components/variations",
331 "//testing/gtest", 333 "//testing/gtest",
332 "//url", 334 "//url",
333 ] 335 ]
334 if (is_win) { 336 if (is_win) {
335 # TODO(jschuh): crbug.com/167187 fix size_t to int truncations. 337 # TODO(jschuh): crbug.com/167187 fix size_t to int truncations.
336 cflags = [ "/wd4267" ] # Conversion from size_t to 'type'. 338 cflags = [ "/wd4267" ] # Conversion from size_t to 'type'.
337 } 339 }
338 } 340 }
OLDNEW
« no previous file with comments | « no previous file | components/safe_browsing_db/v4_database.cc » ('j') | components/safe_browsing_db/v4_rice.cc » ('J')

Powered by Google App Engine
This is Rietveld 408576698