| 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 149 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 160 "v4_database.cc", | 160 "v4_database.cc", |
| 161 "v4_database.h", | 161 "v4_database.h", |
| 162 ] | 162 ] |
| 163 public_deps = [ | 163 public_deps = [ |
| 164 ":proto", | 164 ":proto", |
| 165 ] | 165 ] |
| 166 deps = [ | 166 deps = [ |
| 167 ":v4_protocol_manager_util", | 167 ":v4_protocol_manager_util", |
| 168 ":v4_store", | 168 ":v4_store", |
| 169 "//base", | 169 "//base", |
| 170 "//content/public/browser", |
| 170 ] | 171 ] |
| 171 } | 172 } |
| 172 | 173 |
| 173 source_set("v4_get_hash_protocol_manager") { | 174 source_set("v4_get_hash_protocol_manager") { |
| 174 sources = [ | 175 sources = [ |
| 175 "v4_get_hash_protocol_manager.cc", | 176 "v4_get_hash_protocol_manager.cc", |
| 176 "v4_get_hash_protocol_manager.h", | 177 "v4_get_hash_protocol_manager.h", |
| 177 ] | 178 ] |
| 178 public_deps = [ | 179 public_deps = [ |
| 179 ":proto", | 180 ":proto", |
| (...skipping 34 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 214 deps = [ | 215 deps = [ |
| 215 ":proto", | 216 ":proto", |
| 216 "//base", | 217 "//base", |
| 217 "//net", | 218 "//net", |
| 218 "//url:url", | 219 "//url:url", |
| 219 ] | 220 ] |
| 220 } | 221 } |
| 221 | 222 |
| 222 source_set("v4_store") { | 223 source_set("v4_store") { |
| 223 sources = [ | 224 sources = [ |
| 225 "v4_store.cc", |
| 224 "v4_store.h", | 226 "v4_store.h", |
| 225 ] | 227 ] |
| 226 deps = [] | 228 deps = [ |
| 229 "//base", |
| 230 ] |
| 227 } | 231 } |
| 228 | 232 |
| 229 source_set("v4_update_protocol_manager") { | 233 source_set("v4_update_protocol_manager") { |
| 230 sources = [ | 234 sources = [ |
| 231 "v4_update_protocol_manager.cc", | 235 "v4_update_protocol_manager.cc", |
| 232 "v4_update_protocol_manager.h", | 236 "v4_update_protocol_manager.h", |
| 233 ] | 237 ] |
| 234 deps = [ | 238 deps = [ |
| 235 ":proto", | 239 ":proto", |
| 236 ":util", | 240 ":util", |
| (...skipping 52 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 289 "//base", | 293 "//base", |
| 290 "//components/variations", | 294 "//components/variations", |
| 291 "//testing/gtest", | 295 "//testing/gtest", |
| 292 "//url", | 296 "//url", |
| 293 ] | 297 ] |
| 294 if (is_win) { | 298 if (is_win) { |
| 295 # TODO(jschuh): crbug.com/167187 fix size_t to int truncations. | 299 # TODO(jschuh): crbug.com/167187 fix size_t to int truncations. |
| 296 cflags = [ "/wd4267" ] # Conversion from size_t to 'type'. | 300 cflags = [ "/wd4267" ] # Conversion from size_t to 'type'. |
| 297 } | 301 } |
| 298 } | 302 } |
| OLD | NEW |