OLD | NEW |
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 193 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
204 static_library("v4_local_database_manager") { | 204 static_library("v4_local_database_manager") { |
205 sources = [ | 205 sources = [ |
206 "v4_local_database_manager.cc", | 206 "v4_local_database_manager.cc", |
207 "v4_local_database_manager.h", | 207 "v4_local_database_manager.h", |
208 ] | 208 ] |
209 deps = [ | 209 deps = [ |
210 ":database_manager", | 210 ":database_manager", |
211 ":hit_report", | 211 ":hit_report", |
212 ":safebrowsing_proto", | 212 ":safebrowsing_proto", |
213 ":v4_database", | 213 ":v4_database", |
| 214 ":v4_get_hash_protocol_manager", |
214 ":v4_protocol_manager_util", | 215 ":v4_protocol_manager_util", |
215 ":v4_update_protocol_manager", | 216 ":v4_update_protocol_manager", |
216 "//base", | 217 "//base", |
217 "//content/public/browser", | 218 "//content/public/browser", |
218 "//net", | 219 "//net", |
219 "//url:url", | 220 "//url:url", |
220 ] | 221 ] |
221 } | 222 } |
222 | 223 |
223 source_set("v4_protocol_manager_util") { | 224 source_set("v4_protocol_manager_util") { |
(...skipping 109 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
333 "//base", | 334 "//base", |
334 "//components/variations", | 335 "//components/variations", |
335 "//testing/gtest", | 336 "//testing/gtest", |
336 "//url", | 337 "//url", |
337 ] | 338 ] |
338 if (is_win) { | 339 if (is_win) { |
339 # TODO(jschuh): crbug.com/167187 fix size_t to int truncations. | 340 # TODO(jschuh): crbug.com/167187 fix size_t to int truncations. |
340 cflags = [ "/wd4267" ] # Conversion from size_t to 'type'. | 341 cflags = [ "/wd4267" ] # Conversion from size_t to 'type'. |
341 } | 342 } |
342 } | 343 } |
OLD | NEW |