| 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 304 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 315 ":v4_protocol_manager_util", | 315 ":v4_protocol_manager_util", |
| 316 ] | 316 ] |
| 317 } | 317 } |
| 318 | 318 |
| 319 static_library("v4_update_protocol_manager") { | 319 static_library("v4_update_protocol_manager") { |
| 320 sources = [ | 320 sources = [ |
| 321 "v4_update_protocol_manager.cc", | 321 "v4_update_protocol_manager.cc", |
| 322 "v4_update_protocol_manager.h", | 322 "v4_update_protocol_manager.h", |
| 323 ] | 323 ] |
| 324 deps = [ | 324 deps = [ |
| 325 ":safe_browsing_prefs", |
| 325 ":safebrowsing_proto", | 326 ":safebrowsing_proto", |
| 326 ":util", | 327 ":util", |
| 327 ":v4_protocol_manager_util", | 328 ":v4_protocol_manager_util", |
| 328 "//base", | 329 "//base", |
| 329 "//components/data_use_measurement/core", | 330 "//components/data_use_measurement/core", |
| 330 "//net", | 331 "//net", |
| 331 "//url", | 332 "//url", |
| 332 ] | 333 ] |
| 333 } | 334 } |
| 334 | 335 |
| (...skipping 131 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 466 "//base", | 467 "//base", |
| 467 "//components/variations", | 468 "//components/variations", |
| 468 "//testing/gtest", | 469 "//testing/gtest", |
| 469 "//url", | 470 "//url", |
| 470 ] | 471 ] |
| 471 if (is_win) { | 472 if (is_win) { |
| 472 # TODO(jschuh): crbug.com/167187 fix size_t to int truncations. | 473 # TODO(jschuh): crbug.com/167187 fix size_t to int truncations. |
| 473 cflags = [ "/wd4267" ] # Conversion from size_t to 'type'. | 474 cflags = [ "/wd4267" ] # Conversion from size_t to 'type'. |
| 474 } | 475 } |
| 475 } | 476 } |
| OLD | NEW |