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

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

Issue 1954393002: Initialize and reset V4LocalDBManager. Instantiate V4Stores. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@v4_01_db_realz
Patch Set: Add v4_store.cc to gypi and update a comment Created 4 years, 7 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("proto") { 7 proto_library("proto") {
8 sources = [ 8 sources = [
9 "safebrowsing.proto", 9 "safebrowsing.proto",
10 ] 10 ]
(...skipping 203 matching lines...) Expand 10 before | Expand all | Expand 10 after
214 deps = [ 214 deps = [
215 ":proto", 215 ":proto",
216 "//base", 216 "//base",
217 "//net", 217 "//net",
218 "//url:url", 218 "//url:url",
219 ] 219 ]
220 } 220 }
221 221
222 source_set("v4_store") { 222 source_set("v4_store") {
223 sources = [ 223 sources = [
224 "v4_store.cc",
224 "v4_store.h", 225 "v4_store.h",
225 ] 226 ]
226 deps = [] 227 deps = [
228 "//base",
229 ]
227 } 230 }
228 231
229 source_set("v4_update_protocol_manager") { 232 source_set("v4_update_protocol_manager") {
230 sources = [ 233 sources = [
231 "v4_update_protocol_manager.cc", 234 "v4_update_protocol_manager.cc",
232 "v4_update_protocol_manager.h", 235 "v4_update_protocol_manager.h",
233 ] 236 ]
234 deps = [ 237 deps = [
235 ":proto", 238 ":proto",
236 ":util", 239 ":util",
(...skipping 52 matching lines...) Expand 10 before | Expand all | Expand 10 after
289 "//base", 292 "//base",
290 "//components/variations", 293 "//components/variations",
291 "//testing/gtest", 294 "//testing/gtest",
292 "//url", 295 "//url",
293 ] 296 ]
294 if (is_win) { 297 if (is_win) {
295 # TODO(jschuh): crbug.com/167187 fix size_t to int truncations. 298 # TODO(jschuh): crbug.com/167187 fix size_t to int truncations.
296 cflags = [ "/wd4267" ] # Conversion from size_t to 'type'. 299 cflags = [ "/wd4267" ] # Conversion from size_t to 'type'.
297 } 300 }
298 } 301 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698