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("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 Loading... |
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 Loading... |
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 } |
OLD | NEW |