| 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 254 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 265 "v4_store.h", | 265 "v4_store.h", |
| 266 ] | 266 ] |
| 267 public_deps = [ | 267 public_deps = [ |
| 268 ":safebrowsing_proto", | 268 ":safebrowsing_proto", |
| 269 ":v4_store_proto", | 269 ":v4_store_proto", |
| 270 ] | 270 ] |
| 271 deps = [ | 271 deps = [ |
| 272 ":v4_protocol_manager_util", | 272 ":v4_protocol_manager_util", |
| 273 ":v4_rice", | 273 ":v4_rice", |
| 274 "//base", | 274 "//base", |
| 275 "//content/public/browser", |
| 275 "//crypto", | 276 "//crypto", |
| 276 ] | 277 ] |
| 277 } | 278 } |
| 278 | 279 |
| 279 static_library("v4_update_protocol_manager") { | 280 static_library("v4_update_protocol_manager") { |
| 280 sources = [ | 281 sources = [ |
| 281 "v4_update_protocol_manager.cc", | 282 "v4_update_protocol_manager.cc", |
| 282 "v4_update_protocol_manager.h", | 283 "v4_update_protocol_manager.h", |
| 283 ] | 284 ] |
| 284 deps = [ | 285 deps = [ |
| (...skipping 116 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 401 "//base", | 402 "//base", |
| 402 "//components/variations", | 403 "//components/variations", |
| 403 "//testing/gtest", | 404 "//testing/gtest", |
| 404 "//url", | 405 "//url", |
| 405 ] | 406 ] |
| 406 if (is_win) { | 407 if (is_win) { |
| 407 # TODO(jschuh): crbug.com/167187 fix size_t to int truncations. | 408 # TODO(jschuh): crbug.com/167187 fix size_t to int truncations. |
| 408 cflags = [ "/wd4267" ] # Conversion from size_t to 'type'. | 409 cflags = [ "/wd4267" ] # Conversion from size_t to 'type'. |
| 409 } | 410 } |
| 410 } | 411 } |
| OLD | NEW |