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 238 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
249 "v4_store.h", | 249 "v4_store.h", |
250 ] | 250 ] |
251 public_deps = [ | 251 public_deps = [ |
252 ":safebrowsing_proto", | 252 ":safebrowsing_proto", |
253 ":v4_store_proto", | 253 ":v4_store_proto", |
254 ] | 254 ] |
255 deps = [ | 255 deps = [ |
256 ":v4_protocol_manager_util", | 256 ":v4_protocol_manager_util", |
257 ":v4_rice", | 257 ":v4_rice", |
258 "//base", | 258 "//base", |
| 259 "//crypto", |
259 ] | 260 ] |
260 } | 261 } |
261 | 262 |
262 static_library("v4_update_protocol_manager") { | 263 static_library("v4_update_protocol_manager") { |
263 sources = [ | 264 sources = [ |
264 "v4_update_protocol_manager.cc", | 265 "v4_update_protocol_manager.cc", |
265 "v4_update_protocol_manager.h", | 266 "v4_update_protocol_manager.h", |
266 ] | 267 ] |
267 deps = [ | 268 deps = [ |
268 ":safebrowsing_proto", | 269 ":safebrowsing_proto", |
(...skipping 27 matching lines...) Expand all Loading... |
296 ":v4_database", | 297 ":v4_database", |
297 ":v4_get_hash_protocol_manager", | 298 ":v4_get_hash_protocol_manager", |
298 ":v4_local_database_manager", | 299 ":v4_local_database_manager", |
299 ":v4_protocol_manager_util", | 300 ":v4_protocol_manager_util", |
300 ":v4_rice", | 301 ":v4_rice", |
301 ":v4_store", | 302 ":v4_store", |
302 ":v4_store_proto", | 303 ":v4_store_proto", |
303 ":v4_update_protocol_manager", | 304 ":v4_update_protocol_manager", |
304 "//base", | 305 "//base", |
305 "//content/test:test_support", | 306 "//content/test:test_support", |
| 307 "//crypto", |
306 "//net", | 308 "//net", |
307 "//net:test_support", | 309 "//net:test_support", |
308 "//testing/gtest", | 310 "//testing/gtest", |
309 "//url", | 311 "//url", |
310 ] | 312 ] |
311 if (is_win) { | 313 if (is_win) { |
312 # TODO(jschuh): crbug.com/167187 fix size_t to int truncations. | 314 # TODO(jschuh): crbug.com/167187 fix size_t to int truncations. |
313 cflags = [ "/wd4267" ] # Conversion from size_t to 'type'. | 315 cflags = [ "/wd4267" ] # Conversion from size_t to 'type'. |
314 } | 316 } |
315 } | 317 } |
(...skipping 13 matching lines...) Expand all Loading... |
329 "//base", | 331 "//base", |
330 "//components/variations", | 332 "//components/variations", |
331 "//testing/gtest", | 333 "//testing/gtest", |
332 "//url", | 334 "//url", |
333 ] | 335 ] |
334 if (is_win) { | 336 if (is_win) { |
335 # TODO(jschuh): crbug.com/167187 fix size_t to int truncations. | 337 # TODO(jschuh): crbug.com/167187 fix size_t to int truncations. |
336 cflags = [ "/wd4267" ] # Conversion from size_t to 'type'. | 338 cflags = [ "/wd4267" ] # Conversion from size_t to 'type'. |
337 } | 339 } |
338 } | 340 } |
OLD | NEW |