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 47 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
58 | 58 |
59 static_library("database_manager") { | 59 static_library("database_manager") { |
60 sources = [ | 60 sources = [ |
61 "database_manager.cc", | 61 "database_manager.cc", |
62 "database_manager.h", | 62 "database_manager.h", |
63 ] | 63 ] |
64 deps = [ | 64 deps = [ |
65 ":hit_report", | 65 ":hit_report", |
66 ":util", | 66 ":util", |
67 ":v4_get_hash_protocol_manager", | 67 ":v4_get_hash_protocol_manager", |
| 68 ":v4_protocol_manager_util", |
68 "//base", | 69 "//base", |
69 "//content/public/browser", | 70 "//content/public/browser", |
70 "//content/public/common", | 71 "//content/public/common", |
71 "//net", | 72 "//net", |
72 "//url", | 73 "//url", |
73 ] | 74 ] |
74 } | 75 } |
75 | 76 |
76 static_library("hit_report") { | 77 static_library("hit_report") { |
77 sources = [ | 78 sources = [ |
(...skipping 306 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
384 "//base", | 385 "//base", |
385 "//components/variations", | 386 "//components/variations", |
386 "//testing/gtest", | 387 "//testing/gtest", |
387 "//url", | 388 "//url", |
388 ] | 389 ] |
389 if (is_win) { | 390 if (is_win) { |
390 # TODO(jschuh): crbug.com/167187 fix size_t to int truncations. | 391 # TODO(jschuh): crbug.com/167187 fix size_t to int truncations. |
391 cflags = [ "/wd4267" ] # Conversion from size_t to 'type'. | 392 cflags = [ "/wd4267" ] # Conversion from size_t to 'type'. |
392 } | 393 } |
393 } | 394 } |
OLD | NEW |