| 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 177 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 188 "v4_get_hash_protocol_manager.cc", | 188 "v4_get_hash_protocol_manager.cc", |
| 189 "v4_get_hash_protocol_manager.h", | 189 "v4_get_hash_protocol_manager.h", |
| 190 ] | 190 ] |
| 191 public_deps = [ | 191 public_deps = [ |
| 192 ":safebrowsing_proto", | 192 ":safebrowsing_proto", |
| 193 ] | 193 ] |
| 194 deps = [ | 194 deps = [ |
| 195 ":util", | 195 ":util", |
| 196 ":v4_protocol_manager_util", | 196 ":v4_protocol_manager_util", |
| 197 "//base", | 197 "//base", |
| 198 "//content/public/browser", |
| 198 "//net", | 199 "//net", |
| 199 "//url", | 200 "//url", |
| 200 ] | 201 ] |
| 201 } | 202 } |
| 202 | 203 |
| 203 static_library("v4_local_database_manager") { | 204 static_library("v4_local_database_manager") { |
| 204 sources = [ | 205 sources = [ |
| 205 "v4_local_database_manager.cc", | 206 "v4_local_database_manager.cc", |
| 206 "v4_local_database_manager.h", | 207 "v4_local_database_manager.h", |
| 207 ] | 208 ] |
| (...skipping 89 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 297 "v4_get_hash_protocol_manager_unittest.cc", | 298 "v4_get_hash_protocol_manager_unittest.cc", |
| 298 ] | 299 ] |
| 299 deps = [ | 300 deps = [ |
| 300 ":safebrowsing_proto", | 301 ":safebrowsing_proto", |
| 301 ":util", | 302 ":util", |
| 302 ":v4_database", | 303 ":v4_database", |
| 303 ":v4_get_hash_protocol_manager", | 304 ":v4_get_hash_protocol_manager", |
| 304 ":v4_local_database_manager", | 305 ":v4_local_database_manager", |
| 305 "//base", | 306 "//base", |
| 306 "//base/test:test_support", | 307 "//base/test:test_support", |
| 308 "//content/test:test_support", |
| 307 "//net", | 309 "//net", |
| 308 "//net:test_support", | 310 "//net:test_support", |
| 309 "//testing/gtest", | 311 "//testing/gtest", |
| 310 ] | 312 ] |
| 311 } | 313 } |
| 312 | 314 |
| 313 source_set("v4_local_database_manager_unittest") { | 315 source_set("v4_local_database_manager_unittest") { |
| 314 testonly = true | 316 testonly = true |
| 315 sources = [ | 317 sources = [ |
| 316 "v4_local_database_manager_unittest.cc", | 318 "v4_local_database_manager_unittest.cc", |
| (...skipping 67 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 384 "//base", | 386 "//base", |
| 385 "//components/variations", | 387 "//components/variations", |
| 386 "//testing/gtest", | 388 "//testing/gtest", |
| 387 "//url", | 389 "//url", |
| 388 ] | 390 ] |
| 389 if (is_win) { | 391 if (is_win) { |
| 390 # TODO(jschuh): crbug.com/167187 fix size_t to int truncations. | 392 # TODO(jschuh): crbug.com/167187 fix size_t to int truncations. |
| 391 cflags = [ "/wd4267" ] # Conversion from size_t to 'type'. | 393 cflags = [ "/wd4267" ] # Conversion from size_t to 'type'. |
| 392 } | 394 } |
| 393 } | 395 } |
| OLD | NEW |