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

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

Issue 2647323009: Add extended reporting level in the update request (Closed)
Patch Set: rebase Created 3 years, 11 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 304 matching lines...) Expand 10 before | Expand all | Expand 10 after
315 ":v4_protocol_manager_util", 315 ":v4_protocol_manager_util",
316 ] 316 ]
317 } 317 }
318 318
319 static_library("v4_update_protocol_manager") { 319 static_library("v4_update_protocol_manager") {
320 sources = [ 320 sources = [
321 "v4_update_protocol_manager.cc", 321 "v4_update_protocol_manager.cc",
322 "v4_update_protocol_manager.h", 322 "v4_update_protocol_manager.h",
323 ] 323 ]
324 deps = [ 324 deps = [
325 ":safe_browsing_prefs",
325 ":safebrowsing_proto", 326 ":safebrowsing_proto",
326 ":util", 327 ":util",
327 ":v4_protocol_manager_util", 328 ":v4_protocol_manager_util",
328 "//base", 329 "//base",
329 "//components/data_use_measurement/core", 330 "//components/data_use_measurement/core",
330 "//net", 331 "//net",
331 "//url", 332 "//url",
332 ] 333 ]
333 } 334 }
334 335
(...skipping 131 matching lines...) Expand 10 before | Expand all | Expand 10 after
466 "//base", 467 "//base",
467 "//components/variations", 468 "//components/variations",
468 "//testing/gtest", 469 "//testing/gtest",
469 "//url", 470 "//url",
470 ] 471 ]
471 if (is_win) { 472 if (is_win) {
472 # TODO(jschuh): crbug.com/167187 fix size_t to int truncations. 473 # TODO(jschuh): crbug.com/167187 fix size_t to int truncations.
473 cflags = [ "/wd4267" ] # Conversion from size_t to 'type'. 474 cflags = [ "/wd4267" ] # Conversion from size_t to 'type'.
474 } 475 }
475 } 476 }
OLDNEW
« no previous file with comments | « chrome/browser/safe_browsing/services_delegate_impl.cc ('k') | components/safe_browsing_db/v4_local_database_manager.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698