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

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

Issue 2276933003: Add data usage tracking for safe browsing (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: rebased 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 258 matching lines...) Expand 10 before | Expand all | Expand 10 after
269 static_library("v4_update_protocol_manager") { 269 static_library("v4_update_protocol_manager") {
270 sources = [ 270 sources = [
271 "v4_update_protocol_manager.cc", 271 "v4_update_protocol_manager.cc",
272 "v4_update_protocol_manager.h", 272 "v4_update_protocol_manager.h",
273 ] 273 ]
274 deps = [ 274 deps = [
275 ":safebrowsing_proto", 275 ":safebrowsing_proto",
276 ":util", 276 ":util",
277 ":v4_protocol_manager_util", 277 ":v4_protocol_manager_util",
278 "//base", 278 "//base",
279 "//components/data_use_measurement/core",
279 "//net", 280 "//net",
280 "//url", 281 "//url",
281 ] 282 ]
282 } 283 }
283 284
284 source_set("v4_database_unittest") { 285 source_set("v4_database_unittest") {
285 testonly = true 286 testonly = true
286 sources = [ 287 sources = [
287 "v4_database_unittest.cc", 288 "v4_database_unittest.cc",
288 ] 289 ]
(...skipping 101 matching lines...) Expand 10 before | Expand all | Expand 10 after
390 "//base", 391 "//base",
391 "//components/variations", 392 "//components/variations",
392 "//testing/gtest", 393 "//testing/gtest",
393 "//url", 394 "//url",
394 ] 395 ]
395 if (is_win) { 396 if (is_win) {
396 # TODO(jschuh): crbug.com/167187 fix size_t to int truncations. 397 # TODO(jschuh): crbug.com/167187 fix size_t to int truncations.
397 cflags = [ "/wd4267" ] # Conversion from size_t to 'type'. 398 cflags = [ "/wd4267" ] # Conversion from size_t to 'type'.
398 } 399 }
399 } 400 }
OLDNEW
« no previous file with comments | « components/data_use_measurement/core/data_use_user_data.cc ('k') | components/safe_browsing_db/DEPS » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698