| 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("proto") { | 7 proto_library("proto") { |
| 8 sources = [ | 8 sources = [ |
| 9 "safebrowsing.proto", | 9 "safebrowsing.proto", |
| 10 ] | 10 ] |
| (...skipping 13 matching lines...) Expand all Loading... |
| 24 ":prefix_set", | 24 ":prefix_set", |
| 25 ":proto", | 25 ":proto", |
| 26 ":util", | 26 ":util", |
| 27 ] | 27 ] |
| 28 } | 28 } |
| 29 | 29 |
| 30 group("safe_browsing_db") { | 30 group("safe_browsing_db") { |
| 31 deps = [ | 31 deps = [ |
| 32 ":safe_browsing_db_shared", | 32 ":safe_browsing_db_shared", |
| 33 ":v4_local_database_manager", | 33 ":v4_local_database_manager", |
| 34 ":v4_update_protocol_manager", |
| 34 ] | 35 ] |
| 35 } | 36 } |
| 36 | 37 |
| 37 group("safe_browsing_db_mobile") { | 38 group("safe_browsing_db_mobile") { |
| 38 deps = [ | 39 deps = [ |
| 39 ":remote_database_manager", | 40 ":remote_database_manager", |
| 40 ":safe_browsing_api_handler", | 41 ":safe_browsing_api_handler", |
| 41 ":safe_browsing_api_handler_util", | 42 ":safe_browsing_api_handler_util", |
| 42 ":safe_browsing_db_shared", | 43 ":safe_browsing_db_shared", |
| 43 ] | 44 ] |
| (...skipping 128 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 172 } | 173 } |
| 173 | 174 |
| 174 source_set("v4_local_database_manager") { | 175 source_set("v4_local_database_manager") { |
| 175 sources = [ | 176 sources = [ |
| 176 "v4_local_database_manager.cc", | 177 "v4_local_database_manager.cc", |
| 177 "v4_local_database_manager.h", | 178 "v4_local_database_manager.h", |
| 178 ] | 179 ] |
| 179 deps = [ | 180 deps = [ |
| 180 ":database_manager", | 181 ":database_manager", |
| 181 ":hit_report", | 182 ":hit_report", |
| 183 ":proto", |
| 182 ":v4_protocol_manager_util", | 184 ":v4_protocol_manager_util", |
| 183 ":v4_update_protocol_manager", | 185 ":v4_update_protocol_manager", |
| 184 "//base", | 186 "//base", |
| 185 "//content/public/browser", | 187 "//content/public/browser", |
| 186 "//net", | 188 "//net", |
| 187 "//url:url", | 189 "//url:url", |
| 188 ] | 190 ] |
| 189 } | 191 } |
| 190 | 192 |
| 191 source_set("v4_protocol_manager_util") { | 193 source_set("v4_protocol_manager_util") { |
| (...skipping 72 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 264 "//base", | 266 "//base", |
| 265 "//components/variations", | 267 "//components/variations", |
| 266 "//testing/gtest", | 268 "//testing/gtest", |
| 267 "//url", | 269 "//url", |
| 268 ] | 270 ] |
| 269 if (is_win) { | 271 if (is_win) { |
| 270 # TODO(jschuh): crbug.com/167187 fix size_t to int truncations. | 272 # TODO(jschuh): crbug.com/167187 fix size_t to int truncations. |
| 271 cflags = [ "/wd4267" ] # Conversion from size_t to 'type'. | 273 cflags = [ "/wd4267" ] # Conversion from size_t to 'type'. |
| 272 } | 274 } |
| 273 } | 275 } |
| OLD | NEW |