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