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

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

Issue 723343002: Update from https://crrev.com/304121 (Closed) Base URL: git@github.com:domokit/mojo.git@master
Patch Set: 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 | « testing/iossim/iossim.mm ('k') | third_party/boringssl/boringssl_unittest.cc » ('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',
(...skipping 67 matching lines...) Expand 10 before | Expand all | Expand 10 after
78 'boringssl.gyp:boringssl', 78 'boringssl.gyp:boringssl',
79 ], 79 ],
80 'sources': [ 80 'sources': [
81 'src/crypto/cipher/cipher_test.c', 81 'src/crypto/cipher/cipher_test.c',
82 ], 82 ],
83 # TODO(davidben): Fix size_t truncations in BoringSSL. 83 # TODO(davidben): Fix size_t truncations in BoringSSL.
84 # https://crbug.com/429039 84 # https://crbug.com/429039
85 'msvs_disabled_warnings': [ 4267, ], 85 'msvs_disabled_warnings': [ 4267, ],
86 }, 86 },
87 { 87 {
88 'target_name': 'boringssl_constant_time_test',
89 'type': 'executable',
90 'dependencies': [
91 'boringssl.gyp:boringssl',
92 ],
93 'sources': [
94 'src/crypto/constant_time_test.c',
95 ],
96 # TODO(davidben): Fix size_t truncations in BoringSSL.
97 # https://crbug.com/429039
98 'msvs_disabled_warnings': [ 4267, ],
99 },
100 {
88 'target_name': 'boringssl_dh_test', 101 'target_name': 'boringssl_dh_test',
89 'type': 'executable', 102 'type': 'executable',
90 'dependencies': [ 103 'dependencies': [
91 'boringssl.gyp:boringssl', 104 'boringssl.gyp:boringssl',
92 ], 105 ],
93 'sources': [ 106 'sources': [
94 'src/crypto/dh/dh_test.c', 107 'src/crypto/dh/dh_test.c',
95 ], 108 ],
96 # TODO(davidben): Fix size_t truncations in BoringSSL. 109 # TODO(davidben): Fix size_t truncations in BoringSSL.
97 # https://crbug.com/429039 110 # https://crbug.com/429039
98 'msvs_disabled_warnings': [ 4267, ], 111 'msvs_disabled_warnings': [ 4267, ],
99 }, 112 },
100 { 113 {
114 'target_name': 'boringssl_digest_test',
115 'type': 'executable',
116 'dependencies': [
117 'boringssl.gyp:boringssl',
118 ],
119 'sources': [
120 'src/crypto/digest/digest_test.c',
121 ],
122 # TODO(davidben): Fix size_t truncations in BoringSSL.
123 # https://crbug.com/429039
124 'msvs_disabled_warnings': [ 4267, ],
125 },
126 {
101 'target_name': 'boringssl_dsa_test', 127 'target_name': 'boringssl_dsa_test',
102 'type': 'executable', 128 'type': 'executable',
103 'dependencies': [ 129 'dependencies': [
104 'boringssl.gyp:boringssl', 130 'boringssl.gyp:boringssl',
105 ], 131 ],
106 'sources': [ 132 'sources': [
107 'src/crypto/dsa/dsa_test.c', 133 'src/crypto/dsa/dsa_test.c',
108 ], 134 ],
109 # TODO(davidben): Fix size_t truncations in BoringSSL. 135 # TODO(davidben): Fix size_t truncations in BoringSSL.
110 # https://crbug.com/429039 136 # https://crbug.com/429039
111 'msvs_disabled_warnings': [ 4267, ], 137 'msvs_disabled_warnings': [ 4267, ],
112 }, 138 },
113 { 139 {
140 'target_name': 'boringssl_ec_test',
141 'type': 'executable',
142 'dependencies': [
143 'boringssl.gyp:boringssl',
144 ],
145 'sources': [
146 'src/crypto/ec/ec_test.c',
147 ],
148 # TODO(davidben): Fix size_t truncations in BoringSSL.
149 # https://crbug.com/429039
150 'msvs_disabled_warnings': [ 4267, ],
151 },
152 {
114 'target_name': 'boringssl_example_mul', 153 'target_name': 'boringssl_example_mul',
115 'type': 'executable', 154 'type': 'executable',
116 'dependencies': [ 155 'dependencies': [
117 'boringssl.gyp:boringssl', 156 'boringssl.gyp:boringssl',
118 ], 157 ],
119 'sources': [ 158 'sources': [
120 'src/crypto/ec/example_mul.c', 159 'src/crypto/ec/example_mul.c',
121 ], 160 ],
122 # TODO(davidben): Fix size_t truncations in BoringSSL. 161 # TODO(davidben): Fix size_t truncations in BoringSSL.
123 # https://crbug.com/429039 162 # https://crbug.com/429039
(...skipping 58 matching lines...) Expand 10 before | Expand all | Expand 10 after
182 'boringssl.gyp:boringssl', 221 'boringssl.gyp:boringssl',
183 ], 222 ],
184 'sources': [ 223 'sources': [
185 'src/crypto/lhash/lhash_test.c', 224 'src/crypto/lhash/lhash_test.c',
186 ], 225 ],
187 # TODO(davidben): Fix size_t truncations in BoringSSL. 226 # TODO(davidben): Fix size_t truncations in BoringSSL.
188 # https://crbug.com/429039 227 # https://crbug.com/429039
189 'msvs_disabled_warnings': [ 4267, ], 228 'msvs_disabled_warnings': [ 4267, ],
190 }, 229 },
191 { 230 {
192 'target_name': 'boringssl_md5_test',
193 'type': 'executable',
194 'dependencies': [
195 'boringssl.gyp:boringssl',
196 ],
197 'sources': [
198 'src/crypto/md5/md5_test.c',
199 ],
200 # TODO(davidben): Fix size_t truncations in BoringSSL.
201 # https://crbug.com/429039
202 'msvs_disabled_warnings': [ 4267, ],
203 },
204 {
205 'target_name': 'boringssl_gcm_test', 231 'target_name': 'boringssl_gcm_test',
206 'type': 'executable', 232 'type': 'executable',
207 'dependencies': [ 233 'dependencies': [
208 'boringssl.gyp:boringssl', 234 'boringssl.gyp:boringssl',
209 ], 235 ],
210 'sources': [ 236 'sources': [
211 'src/crypto/modes/gcm_test.c', 237 'src/crypto/modes/gcm_test.c',
212 ], 238 ],
213 # TODO(davidben): Fix size_t truncations in BoringSSL. 239 # TODO(davidben): Fix size_t truncations in BoringSSL.
214 # https://crbug.com/429039 240 # https://crbug.com/429039
(...skipping 16 matching lines...) Expand all
231 'target_name': 'boringssl_rsa_test', 257 'target_name': 'boringssl_rsa_test',
232 'type': 'executable', 258 'type': 'executable',
233 'dependencies': [ 259 'dependencies': [
234 'boringssl.gyp:boringssl', 260 'boringssl.gyp:boringssl',
235 ], 261 ],
236 'sources': [ 262 'sources': [
237 'src/crypto/rsa/rsa_test.c', 263 'src/crypto/rsa/rsa_test.c',
238 ], 264 ],
239 # TODO(davidben): Fix size_t truncations in BoringSSL. 265 # TODO(davidben): Fix size_t truncations in BoringSSL.
240 # https://crbug.com/429039 266 # https://crbug.com/429039
241 'msvs_disabled_warnings': [ 4267, ],
242 },
243 {
244 'target_name': 'boringssl_sha1_test',
245 'type': 'executable',
246 'dependencies': [
247 'boringssl.gyp:boringssl',
248 ],
249 'sources': [
250 'src/crypto/sha/sha1_test.c',
251 ],
252 # TODO(davidben): Fix size_t truncations in BoringSSL.
253 # https://crbug.com/429039
254 'msvs_disabled_warnings': [ 4267, ], 267 'msvs_disabled_warnings': [ 4267, ],
255 }, 268 },
256 { 269 {
257 'target_name': 'boringssl_pkcs7_test', 270 'target_name': 'boringssl_pkcs7_test',
258 'type': 'executable', 271 'type': 'executable',
259 'dependencies': [ 272 'dependencies': [
260 'boringssl.gyp:boringssl', 273 'boringssl.gyp:boringssl',
261 ], 274 ],
262 'sources': [ 275 'sources': [
263 'src/crypto/x509/pkcs7_test.c', 276 'src/crypto/x509/pkcs7_test.c',
(...skipping 30 matching lines...) Expand all
294 }, 307 },
295 ], 308 ],
296 'variables': { 309 'variables': {
297 'boringssl_test_targets': [ 310 'boringssl_test_targets': [
298 'boringssl_aead_test', 311 'boringssl_aead_test',
299 'boringssl_base64_test', 312 'boringssl_base64_test',
300 'boringssl_bio_test', 313 'boringssl_bio_test',
301 'boringssl_bn_test', 314 'boringssl_bn_test',
302 'boringssl_bytestring_test', 315 'boringssl_bytestring_test',
303 'boringssl_cipher_test', 316 'boringssl_cipher_test',
317 'boringssl_constant_time_test',
304 'boringssl_dh_test', 318 'boringssl_dh_test',
319 'boringssl_digest_test',
305 'boringssl_dsa_test', 320 'boringssl_dsa_test',
321 'boringssl_ec_test',
306 'boringssl_ecdsa_test', 322 'boringssl_ecdsa_test',
307 'boringssl_err_test', 323 'boringssl_err_test',
308 'boringssl_evp_test', 324 'boringssl_evp_test',
309 'boringssl_example_mul', 325 'boringssl_example_mul',
310 'boringssl_gcm_test', 326 'boringssl_gcm_test',
311 'boringssl_hmac_test', 327 'boringssl_hmac_test',
312 'boringssl_lhash_test', 328 'boringssl_lhash_test',
313 'boringssl_md5_test',
314 'boringssl_pkcs12_test', 329 'boringssl_pkcs12_test',
315 'boringssl_pkcs7_test', 330 'boringssl_pkcs7_test',
316 'boringssl_pqueue_test', 331 'boringssl_pqueue_test',
317 'boringssl_rsa_test', 332 'boringssl_rsa_test',
318 'boringssl_sha1_test',
319 'boringssl_ssl_test', 333 'boringssl_ssl_test',
320 ], 334 ],
321 } 335 }
322 } 336 }
OLDNEW
« no previous file with comments | « testing/iossim/iossim.mm ('k') | third_party/boringssl/boringssl_unittest.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698