| 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 12 matching lines...) Expand all Loading... |
| 23 ":hit_report", | 23 ":hit_report", |
| 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_update_protocol_manager", |
| 33 ] | 34 ] |
| 34 } | 35 } |
| 35 | 36 |
| 36 group("safe_browsing_db_mobile") { | 37 group("safe_browsing_db_mobile") { |
| 37 deps = [ | 38 deps = [ |
| 38 ":remote_database_manager", | 39 ":remote_database_manager", |
| 39 ":safe_browsing_api_handler", | 40 ":safe_browsing_api_handler", |
| 40 ":safe_browsing_api_handler_util", | 41 ":safe_browsing_api_handler_util", |
| 41 ":safe_browsing_db_shared", | 42 ":safe_browsing_db_shared", |
| 42 ] | 43 ] |
| 43 } | 44 } |
| 44 | 45 |
| 45 source_set("database_manager") { | 46 source_set("database_manager") { |
| 46 sources = [ | 47 sources = [ |
| 47 "database_manager.cc", | 48 "database_manager.cc", |
| 48 "database_manager.h", | 49 "database_manager.h", |
| 49 ] | 50 ] |
| 50 deps = [ | 51 deps = [ |
| 51 ":hit_report", | 52 ":hit_report", |
| 52 ":util", | 53 ":util", |
| 53 ":v4_get_hash_protocol_manager", | 54 ":v4_get_hash_protocol_manager", |
| 54 ":v4_update_protocol_manager", | |
| 55 "//base:base", | 55 "//base:base", |
| 56 "//content/public/browser", | 56 "//content/public/browser", |
| 57 "//content/public/common", | 57 "//content/public/common", |
| 58 "//net", | 58 "//net", |
| 59 "//url:url", | 59 "//url:url", |
| 60 ] | 60 ] |
| 61 } | 61 } |
| 62 | 62 |
| 63 source_set("hit_report") { | 63 source_set("hit_report") { |
| 64 sources = [ | 64 sources = [ |
| (...skipping 177 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 242 "//base", | 242 "//base", |
| 243 "//components/variations", | 243 "//components/variations", |
| 244 "//testing/gtest", | 244 "//testing/gtest", |
| 245 "//url", | 245 "//url", |
| 246 ] | 246 ] |
| 247 if (is_win) { | 247 if (is_win) { |
| 248 # TODO(jschuh): crbug.com/167187 fix size_t to int truncations. | 248 # TODO(jschuh): crbug.com/167187 fix size_t to int truncations. |
| 249 cflags = [ "/wd4267" ] # Conversion from size_t to 'type'. | 249 cflags = [ "/wd4267" ] # Conversion from size_t to 'type'. |
| 250 } | 250 } |
| 251 } | 251 } |
| OLD | NEW |