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 203 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
214 deps = [ | 214 deps = [ |
215 ":proto", | 215 ":proto", |
216 "//base", | 216 "//base", |
217 "//net", | 217 "//net", |
218 "//url:url", | 218 "//url:url", |
219 ] | 219 ] |
220 } | 220 } |
221 | 221 |
222 source_set("v4_store") { | 222 source_set("v4_store") { |
223 sources = [ | 223 sources = [ |
| 224 "v4_store.cc", |
224 "v4_store.h", | 225 "v4_store.h", |
225 ] | 226 ] |
226 deps = [] | 227 deps = [ |
| 228 "//base", |
| 229 ] |
227 } | 230 } |
228 | 231 |
229 source_set("v4_update_protocol_manager") { | 232 source_set("v4_update_protocol_manager") { |
230 sources = [ | 233 sources = [ |
231 "v4_update_protocol_manager.cc", | 234 "v4_update_protocol_manager.cc", |
232 "v4_update_protocol_manager.h", | 235 "v4_update_protocol_manager.h", |
233 ] | 236 ] |
234 deps = [ | 237 deps = [ |
235 ":proto", | 238 ":proto", |
236 ":util", | 239 ":util", |
(...skipping 52 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
289 "//base", | 292 "//base", |
290 "//components/variations", | 293 "//components/variations", |
291 "//testing/gtest", | 294 "//testing/gtest", |
292 "//url", | 295 "//url", |
293 ] | 296 ] |
294 if (is_win) { | 297 if (is_win) { |
295 # TODO(jschuh): crbug.com/167187 fix size_t to int truncations. | 298 # TODO(jschuh): crbug.com/167187 fix size_t to int truncations. |
296 cflags = [ "/wd4267" ] # Conversion from size_t to 'type'. | 299 cflags = [ "/wd4267" ] # Conversion from size_t to 'type'. |
297 } | 300 } |
298 } | 301 } |
OLD | NEW |