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 207 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
218 "//net", | 218 "//net", |
219 "//url:url", | 219 "//url:url", |
220 ] | 220 ] |
221 } | 221 } |
222 | 222 |
223 source_set("v4_store") { | 223 source_set("v4_store") { |
224 sources = [ | 224 sources = [ |
225 "v4_store.cc", | 225 "v4_store.cc", |
226 "v4_store.h", | 226 "v4_store.h", |
227 ] | 227 ] |
| 228 public_deps = [ |
| 229 ":proto", |
| 230 ] |
228 deps = [ | 231 deps = [ |
| 232 ":v4_protocol_manager_util", |
229 "//base", | 233 "//base", |
230 ] | 234 ] |
231 } | 235 } |
232 | 236 |
233 source_set("v4_update_protocol_manager") { | 237 source_set("v4_update_protocol_manager") { |
234 sources = [ | 238 sources = [ |
235 "v4_update_protocol_manager.cc", | 239 "v4_update_protocol_manager.cc", |
236 "v4_update_protocol_manager.h", | 240 "v4_update_protocol_manager.h", |
237 ] | 241 ] |
238 deps = [ | 242 deps = [ |
(...skipping 57 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
296 "//base", | 300 "//base", |
297 "//components/variations", | 301 "//components/variations", |
298 "//testing/gtest", | 302 "//testing/gtest", |
299 "//url", | 303 "//url", |
300 ] | 304 ] |
301 if (is_win) { | 305 if (is_win) { |
302 # TODO(jschuh): crbug.com/167187 fix size_t to int truncations. | 306 # TODO(jschuh): crbug.com/167187 fix size_t to int truncations. |
303 cflags = [ "/wd4267" ] # Conversion from size_t to 'type'. | 307 cflags = [ "/wd4267" ] # Conversion from size_t to 'type'. |
304 } | 308 } |
305 } | 309 } |
OLD | NEW |