| 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 ":v4_local_database_manager", |
| 34 ] | 34 ] |
| 35 } | 35 } |
| 36 | 36 |
| 37 group("safe_browsing_db_mobile") { | 37 group("safe_browsing_db_mobile") { |
| 38 deps = [ | 38 deps = [ |
| 39 ":remote_database_manager", | 39 ":remote_database_manager", |
| 40 ":safe_browsing_api_handler", | 40 ":safe_browsing_api_handler", |
| 41 ":safe_browsing_api_handler_util", | 41 ":safe_browsing_api_handler_util", |
| 42 ":safe_browsing_db_shared", | 42 ":safe_browsing_db_shared", |
| 43 ] | 43 ] |
| (...skipping 220 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 264 "//base", | 264 "//base", |
| 265 "//components/variations", | 265 "//components/variations", |
| 266 "//testing/gtest", | 266 "//testing/gtest", |
| 267 "//url", | 267 "//url", |
| 268 ] | 268 ] |
| 269 if (is_win) { | 269 if (is_win) { |
| 270 # TODO(jschuh): crbug.com/167187 fix size_t to int truncations. | 270 # TODO(jschuh): crbug.com/167187 fix size_t to int truncations. |
| 271 cflags = [ "/wd4267" ] # Conversion from size_t to 'type'. | 271 cflags = [ "/wd4267" ] # Conversion from size_t to 'type'. |
| 272 } | 272 } |
| 273 } | 273 } |
| OLD | NEW |