| 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 258 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 269 static_library("v4_update_protocol_manager") { | 269 static_library("v4_update_protocol_manager") { |
| 270 sources = [ | 270 sources = [ |
| 271 "v4_update_protocol_manager.cc", | 271 "v4_update_protocol_manager.cc", |
| 272 "v4_update_protocol_manager.h", | 272 "v4_update_protocol_manager.h", |
| 273 ] | 273 ] |
| 274 deps = [ | 274 deps = [ |
| 275 ":safebrowsing_proto", | 275 ":safebrowsing_proto", |
| 276 ":util", | 276 ":util", |
| 277 ":v4_protocol_manager_util", | 277 ":v4_protocol_manager_util", |
| 278 "//base", | 278 "//base", |
| 279 "//components/data_use_measurement/core", |
| 279 "//net", | 280 "//net", |
| 280 "//url", | 281 "//url", |
| 281 ] | 282 ] |
| 282 } | 283 } |
| 283 | 284 |
| 284 source_set("v4_database_unittest") { | 285 source_set("v4_database_unittest") { |
| 285 testonly = true | 286 testonly = true |
| 286 sources = [ | 287 sources = [ |
| 287 "v4_database_unittest.cc", | 288 "v4_database_unittest.cc", |
| 288 ] | 289 ] |
| (...skipping 101 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 390 "//base", | 391 "//base", |
| 391 "//components/variations", | 392 "//components/variations", |
| 392 "//testing/gtest", | 393 "//testing/gtest", |
| 393 "//url", | 394 "//url", |
| 394 ] | 395 ] |
| 395 if (is_win) { | 396 if (is_win) { |
| 396 # TODO(jschuh): crbug.com/167187 fix size_t to int truncations. | 397 # TODO(jschuh): crbug.com/167187 fix size_t to int truncations. |
| 397 cflags = [ "/wd4267" ] # Conversion from size_t to 'type'. | 398 cflags = [ "/wd4267" ] # Conversion from size_t to 'type'. |
| 398 } | 399 } |
| 399 } | 400 } |
| OLD | NEW |