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