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

Side by Side Diff: third_party/boringssl/boringssl_tests.gypi

Issue 684093011: Disable size_t truncation warning (C4267) on BoringSSL Win64. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: update_gypi_and_asm.py Created 6 years, 1 month 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
« no previous file with comments | « third_party/boringssl/boringssl.gyp ('k') | third_party/boringssl/update_gypi_and_asm.py » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 # Copyright (c) 2014 The Chromium Authors. All rights reserved. 1 # Copyright (c) 2014 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 # This file is created by update_gypi_and_asm.py. Do not edit manually. 5 # This file is created by update_gypi_and_asm.py. Do not edit manually.
6 6
7 { 7 {
8 'targets': [ 8 'targets': [
9 { 9 {
10 'target_name': 'boringssl_base64_test', 10 'target_name': 'boringssl_base64_test',
11 'type': 'executable', 11 'type': 'executable',
12 'dependencies': [ 12 'dependencies': [
13 'boringssl.gyp:boringssl', 13 'boringssl.gyp:boringssl',
14 ], 14 ],
15 'sources': [ 15 'sources': [
16 'src/crypto/base64/base64_test.c', 16 'src/crypto/base64/base64_test.c',
17 ], 17 ],
18 # TODO(davidben): Fix size_t truncations in BoringSSL.
19 # https://crbug.com/429039
20 'msvs_disabled_warnings': [ 4267, ],
18 }, 21 },
19 { 22 {
20 'target_name': 'boringssl_bio_test', 23 'target_name': 'boringssl_bio_test',
21 'type': 'executable', 24 'type': 'executable',
22 'dependencies': [ 25 'dependencies': [
23 'boringssl.gyp:boringssl', 26 'boringssl.gyp:boringssl',
24 ], 27 ],
25 'sources': [ 28 'sources': [
26 'src/crypto/bio/bio_test.c', 29 'src/crypto/bio/bio_test.c',
27 ], 30 ],
31 # TODO(davidben): Fix size_t truncations in BoringSSL.
32 # https://crbug.com/429039
33 'msvs_disabled_warnings': [ 4267, ],
28 }, 34 },
29 { 35 {
30 'target_name': 'boringssl_bn_test', 36 'target_name': 'boringssl_bn_test',
31 'type': 'executable', 37 'type': 'executable',
32 'dependencies': [ 38 'dependencies': [
33 'boringssl.gyp:boringssl', 39 'boringssl.gyp:boringssl',
34 ], 40 ],
35 'sources': [ 41 'sources': [
36 'src/crypto/bn/bn_test.c', 42 'src/crypto/bn/bn_test.c',
37 ], 43 ],
44 # TODO(davidben): Fix size_t truncations in BoringSSL.
45 # https://crbug.com/429039
46 'msvs_disabled_warnings': [ 4267, ],
38 }, 47 },
39 { 48 {
40 'target_name': 'boringssl_bytestring_test', 49 'target_name': 'boringssl_bytestring_test',
41 'type': 'executable', 50 'type': 'executable',
42 'dependencies': [ 51 'dependencies': [
43 'boringssl.gyp:boringssl', 52 'boringssl.gyp:boringssl',
44 ], 53 ],
45 'sources': [ 54 'sources': [
46 'src/crypto/bytestring/bytestring_test.c', 55 'src/crypto/bytestring/bytestring_test.c',
47 ], 56 ],
57 # TODO(davidben): Fix size_t truncations in BoringSSL.
58 # https://crbug.com/429039
59 'msvs_disabled_warnings': [ 4267, ],
48 }, 60 },
49 { 61 {
50 'target_name': 'boringssl_aead_test', 62 'target_name': 'boringssl_aead_test',
51 'type': 'executable', 63 'type': 'executable',
52 'dependencies': [ 64 'dependencies': [
53 'boringssl.gyp:boringssl', 65 'boringssl.gyp:boringssl',
54 ], 66 ],
55 'sources': [ 67 'sources': [
56 'src/crypto/cipher/aead_test.c', 68 'src/crypto/cipher/aead_test.c',
57 ], 69 ],
70 # TODO(davidben): Fix size_t truncations in BoringSSL.
71 # https://crbug.com/429039
72 'msvs_disabled_warnings': [ 4267, ],
58 }, 73 },
59 { 74 {
60 'target_name': 'boringssl_cipher_test', 75 'target_name': 'boringssl_cipher_test',
61 'type': 'executable', 76 'type': 'executable',
62 'dependencies': [ 77 'dependencies': [
63 'boringssl.gyp:boringssl', 78 'boringssl.gyp:boringssl',
64 ], 79 ],
65 'sources': [ 80 'sources': [
66 'src/crypto/cipher/cipher_test.c', 81 'src/crypto/cipher/cipher_test.c',
67 ], 82 ],
83 # TODO(davidben): Fix size_t truncations in BoringSSL.
84 # https://crbug.com/429039
85 'msvs_disabled_warnings': [ 4267, ],
68 }, 86 },
69 { 87 {
70 'target_name': 'boringssl_dh_test', 88 'target_name': 'boringssl_dh_test',
71 'type': 'executable', 89 'type': 'executable',
72 'dependencies': [ 90 'dependencies': [
73 'boringssl.gyp:boringssl', 91 'boringssl.gyp:boringssl',
74 ], 92 ],
75 'sources': [ 93 'sources': [
76 'src/crypto/dh/dh_test.c', 94 'src/crypto/dh/dh_test.c',
77 ], 95 ],
96 # TODO(davidben): Fix size_t truncations in BoringSSL.
97 # https://crbug.com/429039
98 'msvs_disabled_warnings': [ 4267, ],
78 }, 99 },
79 { 100 {
80 'target_name': 'boringssl_dsa_test', 101 'target_name': 'boringssl_dsa_test',
81 'type': 'executable', 102 'type': 'executable',
82 'dependencies': [ 103 'dependencies': [
83 'boringssl.gyp:boringssl', 104 'boringssl.gyp:boringssl',
84 ], 105 ],
85 'sources': [ 106 'sources': [
86 'src/crypto/dsa/dsa_test.c', 107 'src/crypto/dsa/dsa_test.c',
87 ], 108 ],
109 # TODO(davidben): Fix size_t truncations in BoringSSL.
110 # https://crbug.com/429039
111 'msvs_disabled_warnings': [ 4267, ],
88 }, 112 },
89 { 113 {
90 'target_name': 'boringssl_example_mul', 114 'target_name': 'boringssl_example_mul',
91 'type': 'executable', 115 'type': 'executable',
92 'dependencies': [ 116 'dependencies': [
93 'boringssl.gyp:boringssl', 117 'boringssl.gyp:boringssl',
94 ], 118 ],
95 'sources': [ 119 'sources': [
96 'src/crypto/ec/example_mul.c', 120 'src/crypto/ec/example_mul.c',
97 ], 121 ],
122 # TODO(davidben): Fix size_t truncations in BoringSSL.
123 # https://crbug.com/429039
124 'msvs_disabled_warnings': [ 4267, ],
98 }, 125 },
99 { 126 {
100 'target_name': 'boringssl_ecdsa_test', 127 'target_name': 'boringssl_ecdsa_test',
101 'type': 'executable', 128 'type': 'executable',
102 'dependencies': [ 129 'dependencies': [
103 'boringssl.gyp:boringssl', 130 'boringssl.gyp:boringssl',
104 ], 131 ],
105 'sources': [ 132 'sources': [
106 'src/crypto/ecdsa/ecdsa_test.c', 133 'src/crypto/ecdsa/ecdsa_test.c',
107 ], 134 ],
135 # TODO(davidben): Fix size_t truncations in BoringSSL.
136 # https://crbug.com/429039
137 'msvs_disabled_warnings': [ 4267, ],
108 }, 138 },
109 { 139 {
110 'target_name': 'boringssl_err_test', 140 'target_name': 'boringssl_err_test',
111 'type': 'executable', 141 'type': 'executable',
112 'dependencies': [ 142 'dependencies': [
113 'boringssl.gyp:boringssl', 143 'boringssl.gyp:boringssl',
114 ], 144 ],
115 'sources': [ 145 'sources': [
116 'src/crypto/err/err_test.c', 146 'src/crypto/err/err_test.c',
117 ], 147 ],
148 # TODO(davidben): Fix size_t truncations in BoringSSL.
149 # https://crbug.com/429039
150 'msvs_disabled_warnings': [ 4267, ],
118 }, 151 },
119 { 152 {
120 'target_name': 'boringssl_example_sign', 153 'target_name': 'boringssl_example_sign',
121 'type': 'executable', 154 'type': 'executable',
122 'dependencies': [ 155 'dependencies': [
123 'boringssl.gyp:boringssl', 156 'boringssl.gyp:boringssl',
124 ], 157 ],
125 'sources': [ 158 'sources': [
126 'src/crypto/evp/example_sign.c', 159 'src/crypto/evp/example_sign.c',
127 ], 160 ],
161 # TODO(davidben): Fix size_t truncations in BoringSSL.
162 # https://crbug.com/429039
163 'msvs_disabled_warnings': [ 4267, ],
128 }, 164 },
129 { 165 {
130 'target_name': 'boringssl_hmac_test', 166 'target_name': 'boringssl_hmac_test',
131 'type': 'executable', 167 'type': 'executable',
132 'dependencies': [ 168 'dependencies': [
133 'boringssl.gyp:boringssl', 169 'boringssl.gyp:boringssl',
134 ], 170 ],
135 'sources': [ 171 'sources': [
136 'src/crypto/hmac/hmac_test.c', 172 'src/crypto/hmac/hmac_test.c',
137 ], 173 ],
174 # TODO(davidben): Fix size_t truncations in BoringSSL.
175 # https://crbug.com/429039
176 'msvs_disabled_warnings': [ 4267, ],
138 }, 177 },
139 { 178 {
140 'target_name': 'boringssl_lhash_test', 179 'target_name': 'boringssl_lhash_test',
141 'type': 'executable', 180 'type': 'executable',
142 'dependencies': [ 181 'dependencies': [
143 'boringssl.gyp:boringssl', 182 'boringssl.gyp:boringssl',
144 ], 183 ],
145 'sources': [ 184 'sources': [
146 'src/crypto/lhash/lhash_test.c', 185 'src/crypto/lhash/lhash_test.c',
147 ], 186 ],
187 # TODO(davidben): Fix size_t truncations in BoringSSL.
188 # https://crbug.com/429039
189 'msvs_disabled_warnings': [ 4267, ],
148 }, 190 },
149 { 191 {
150 'target_name': 'boringssl_md5_test', 192 'target_name': 'boringssl_md5_test',
151 'type': 'executable', 193 'type': 'executable',
152 'dependencies': [ 194 'dependencies': [
153 'boringssl.gyp:boringssl', 195 'boringssl.gyp:boringssl',
154 ], 196 ],
155 'sources': [ 197 'sources': [
156 'src/crypto/md5/md5_test.c', 198 'src/crypto/md5/md5_test.c',
157 ], 199 ],
200 # TODO(davidben): Fix size_t truncations in BoringSSL.
201 # https://crbug.com/429039
202 'msvs_disabled_warnings': [ 4267, ],
158 }, 203 },
159 { 204 {
160 'target_name': 'boringssl_gcm_test', 205 'target_name': 'boringssl_gcm_test',
161 'type': 'executable', 206 'type': 'executable',
162 'dependencies': [ 207 'dependencies': [
163 'boringssl.gyp:boringssl', 208 'boringssl.gyp:boringssl',
164 ], 209 ],
165 'sources': [ 210 'sources': [
166 'src/crypto/modes/gcm_test.c', 211 'src/crypto/modes/gcm_test.c',
167 ], 212 ],
213 # TODO(davidben): Fix size_t truncations in BoringSSL.
214 # https://crbug.com/429039
215 'msvs_disabled_warnings': [ 4267, ],
168 }, 216 },
169 { 217 {
170 'target_name': 'boringssl_pkcs12_test', 218 'target_name': 'boringssl_pkcs12_test',
171 'type': 'executable', 219 'type': 'executable',
172 'dependencies': [ 220 'dependencies': [
173 'boringssl.gyp:boringssl', 221 'boringssl.gyp:boringssl',
174 ], 222 ],
175 'sources': [ 223 'sources': [
176 'src/crypto/pkcs8/pkcs12_test.c', 224 'src/crypto/pkcs8/pkcs12_test.c',
177 ], 225 ],
226 # TODO(davidben): Fix size_t truncations in BoringSSL.
227 # https://crbug.com/429039
228 'msvs_disabled_warnings': [ 4267, ],
178 }, 229 },
179 { 230 {
180 'target_name': 'boringssl_rsa_test', 231 'target_name': 'boringssl_rsa_test',
181 'type': 'executable', 232 'type': 'executable',
182 'dependencies': [ 233 'dependencies': [
183 'boringssl.gyp:boringssl', 234 'boringssl.gyp:boringssl',
184 ], 235 ],
185 'sources': [ 236 'sources': [
186 'src/crypto/rsa/rsa_test.c', 237 'src/crypto/rsa/rsa_test.c',
187 ], 238 ],
239 # TODO(davidben): Fix size_t truncations in BoringSSL.
240 # https://crbug.com/429039
241 'msvs_disabled_warnings': [ 4267, ],
188 }, 242 },
189 { 243 {
190 'target_name': 'boringssl_sha1_test', 244 'target_name': 'boringssl_sha1_test',
191 'type': 'executable', 245 'type': 'executable',
192 'dependencies': [ 246 'dependencies': [
193 'boringssl.gyp:boringssl', 247 'boringssl.gyp:boringssl',
194 ], 248 ],
195 'sources': [ 249 'sources': [
196 'src/crypto/sha/sha1_test.c', 250 'src/crypto/sha/sha1_test.c',
197 ], 251 ],
252 # TODO(davidben): Fix size_t truncations in BoringSSL.
253 # https://crbug.com/429039
254 'msvs_disabled_warnings': [ 4267, ],
198 }, 255 },
199 { 256 {
200 'target_name': 'boringssl_pkcs7_test', 257 'target_name': 'boringssl_pkcs7_test',
201 'type': 'executable', 258 'type': 'executable',
202 'dependencies': [ 259 'dependencies': [
203 'boringssl.gyp:boringssl', 260 'boringssl.gyp:boringssl',
204 ], 261 ],
205 'sources': [ 262 'sources': [
206 'src/crypto/x509/pkcs7_test.c', 263 'src/crypto/x509/pkcs7_test.c',
207 ], 264 ],
265 # TODO(davidben): Fix size_t truncations in BoringSSL.
266 # https://crbug.com/429039
267 'msvs_disabled_warnings': [ 4267, ],
208 }, 268 },
209 { 269 {
210 'target_name': 'boringssl_pqueue_test', 270 'target_name': 'boringssl_pqueue_test',
211 'type': 'executable', 271 'type': 'executable',
212 'dependencies': [ 272 'dependencies': [
213 'boringssl.gyp:boringssl', 273 'boringssl.gyp:boringssl',
214 ], 274 ],
215 'sources': [ 275 'sources': [
216 'src/ssl/pqueue/pqueue_test.c', 276 'src/ssl/pqueue/pqueue_test.c',
217 ], 277 ],
278 # TODO(davidben): Fix size_t truncations in BoringSSL.
279 # https://crbug.com/429039
280 'msvs_disabled_warnings': [ 4267, ],
218 }, 281 },
219 { 282 {
220 'target_name': 'boringssl_ssl_test', 283 'target_name': 'boringssl_ssl_test',
221 'type': 'executable', 284 'type': 'executable',
222 'dependencies': [ 285 'dependencies': [
223 'boringssl.gyp:boringssl', 286 'boringssl.gyp:boringssl',
224 ], 287 ],
225 'sources': [ 288 'sources': [
226 'src/ssl/ssl_test.c', 289 'src/ssl/ssl_test.c',
227 ], 290 ],
291 # TODO(davidben): Fix size_t truncations in BoringSSL.
292 # https://crbug.com/429039
293 'msvs_disabled_warnings': [ 4267, ],
228 }, 294 },
229 ], 295 ],
230 'variables': { 296 'variables': {
231 'boringssl_test_targets': [ 297 'boringssl_test_targets': [
232 'boringssl_aead_test', 298 'boringssl_aead_test',
233 'boringssl_base64_test', 299 'boringssl_base64_test',
234 'boringssl_bio_test', 300 'boringssl_bio_test',
235 'boringssl_bn_test', 301 'boringssl_bn_test',
236 'boringssl_bytestring_test', 302 'boringssl_bytestring_test',
237 'boringssl_cipher_test', 303 'boringssl_cipher_test',
238 'boringssl_dh_test', 304 'boringssl_dh_test',
239 'boringssl_dsa_test', 305 'boringssl_dsa_test',
240 'boringssl_ecdsa_test', 306 'boringssl_ecdsa_test',
241 'boringssl_err_test', 307 'boringssl_err_test',
242 'boringssl_example_mul', 308 'boringssl_example_mul',
243 'boringssl_example_sign', 309 'boringssl_example_sign',
244 'boringssl_gcm_test', 310 'boringssl_gcm_test',
245 'boringssl_hmac_test', 311 'boringssl_hmac_test',
246 'boringssl_lhash_test', 312 'boringssl_lhash_test',
247 'boringssl_md5_test', 313 'boringssl_md5_test',
248 'boringssl_pkcs12_test', 314 'boringssl_pkcs12_test',
249 'boringssl_pkcs7_test', 315 'boringssl_pkcs7_test',
250 'boringssl_pqueue_test', 316 'boringssl_pqueue_test',
251 'boringssl_rsa_test', 317 'boringssl_rsa_test',
252 'boringssl_sha1_test', 318 'boringssl_sha1_test',
253 'boringssl_ssl_test', 319 'boringssl_ssl_test',
254 ], 320 ],
255 } 321 }
256 } 322 }
OLDNEW
« no previous file with comments | « third_party/boringssl/boringssl.gyp ('k') | third_party/boringssl/update_gypi_and_asm.py » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698