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

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

Issue 2384893002: PVer4: Test checksum on startup outside the hotpath of DB load (Closed)
Patch Set: Remove all histogram related changes. That would be a separate CL Created 4 years, 2 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 254 matching lines...) Expand 10 before | Expand all | Expand 10 after
265 "v4_store.h", 265 "v4_store.h",
266 ] 266 ]
267 public_deps = [ 267 public_deps = [
268 ":safebrowsing_proto", 268 ":safebrowsing_proto",
269 ":v4_store_proto", 269 ":v4_store_proto",
270 ] 270 ]
271 deps = [ 271 deps = [
272 ":v4_protocol_manager_util", 272 ":v4_protocol_manager_util",
273 ":v4_rice", 273 ":v4_rice",
274 "//base", 274 "//base",
275 "//content/public/browser",
275 "//crypto", 276 "//crypto",
276 ] 277 ]
277 } 278 }
278 279
279 static_library("v4_update_protocol_manager") { 280 static_library("v4_update_protocol_manager") {
280 sources = [ 281 sources = [
281 "v4_update_protocol_manager.cc", 282 "v4_update_protocol_manager.cc",
282 "v4_update_protocol_manager.h", 283 "v4_update_protocol_manager.h",
283 ] 284 ]
284 deps = [ 285 deps = [
(...skipping 116 matching lines...) Expand 10 before | Expand all | Expand 10 after
401 "//base", 402 "//base",
402 "//components/variations", 403 "//components/variations",
403 "//testing/gtest", 404 "//testing/gtest",
404 "//url", 405 "//url",
405 ] 406 ]
406 if (is_win) { 407 if (is_win) {
407 # TODO(jschuh): crbug.com/167187 fix size_t to int truncations. 408 # TODO(jschuh): crbug.com/167187 fix size_t to int truncations.
408 cflags = [ "/wd4267" ] # Conversion from size_t to 'type'. 409 cflags = [ "/wd4267" ] # Conversion from size_t to 'type'.
409 } 410 }
410 } 411 }
OLDNEW
« no previous file with comments | « no previous file | components/safe_browsing_db/v4_database.cc » ('j') | components/safe_browsing_db/v4_database.cc » ('J')

Powered by Google App Engine
This is Rietveld 408576698