Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(580)

Side by Side Diff: components/safe_browsing_db/BUILD.gn

Issue 2225113002: Reland: Move PVer4 related code from util.* to v4_protocol_manager_util.* (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Minor: Address nparker@'s comments Created 4 years, 4 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
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("safebrowsing_proto") { 7 proto_library("safebrowsing_proto") {
8 sources = [ 8 sources = [
9 "safebrowsing.proto", 9 "safebrowsing.proto",
10 ] 10 ]
(...skipping 137 matching lines...) Expand 10 before | Expand all | Expand 10 after
148 "//net", 148 "//net",
149 ] 149 ]
150 } 150 }
151 151
152 static_library("util") { 152 static_library("util") {
153 sources = [ 153 sources = [
154 "util.cc", 154 "util.cc",
155 "util.h", 155 "util.h",
156 ] 156 ]
157 deps = [ 157 deps = [
158 ":v4_protocol_manager_util",
158 "//base", 159 "//base",
159 "//base:base", 160 "//base:base",
160 "//crypto", 161 "//crypto",
161 "//net", 162 "//net",
162 "//url:url", 163 "//url:url",
163 ] 164 ]
164 if (is_win) { 165 if (is_win) {
165 # TODO(jschuh): crbug.com/167187 fix size_t to int truncations. 166 # TODO(jschuh): crbug.com/167187 fix size_t to int truncations.
166 cflags = [ "/wd4267" ] # Conversion from size_t to 'type'. 167 cflags = [ "/wd4267" ] # Conversion from size_t to 'type'.
167 } 168 }
(...skipping 161 matching lines...) Expand 10 before | Expand all | Expand 10 after
329 "//base", 330 "//base",
330 "//components/variations", 331 "//components/variations",
331 "//testing/gtest", 332 "//testing/gtest",
332 "//url", 333 "//url",
333 ] 334 ]
334 if (is_win) { 335 if (is_win) {
335 # TODO(jschuh): crbug.com/167187 fix size_t to int truncations. 336 # TODO(jschuh): crbug.com/167187 fix size_t to int truncations.
336 cflags = [ "/wd4267" ] # Conversion from size_t to 'type'. 337 cflags = [ "/wd4267" ] # Conversion from size_t to 'type'.
337 } 338 }
338 } 339 }
OLDNEW
« no previous file with comments | « chrome/browser/safe_browsing/safe_browsing_service_browsertest.cc ('k') | components/safe_browsing_db/util.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698