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

Side by Side Diff: crypto/crypto.gyp

Issue 2081553003: crypto: Add peformance test for SHA1 to compare against base Base URL: https://chromium.googlesource.com/chromium/src.git@cryto-sha1
Patch Set: Created 4 years, 6 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
« no previous file with comments | « crypto/BUILD.gn ('k') | crypto/sha1_perftest.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) 2012 The Chromium Authors. All rights reserved. 1 # Copyright (c) 2012 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 { 5 {
6 'variables': { 6 'variables': {
7 'chromium_code': 1, 7 'chromium_code': 1,
8 }, 8 },
9 'includes': [ 9 'includes': [
10 'crypto.gypi', 10 'crypto.gypi',
(...skipping 128 matching lines...) Expand 10 before | Expand all | Expand 10 after
139 'nss_key_util_unittest.cc', 139 'nss_key_util_unittest.cc',
140 'nss_util_unittest.cc', 140 'nss_util_unittest.cc',
141 ], 141 ],
142 }], 142 }],
143 [ 'OS == "win"', { 143 [ 'OS == "win"', {
144 # TODO(jschuh): crbug.com/167187 fix size_t to int truncations. 144 # TODO(jschuh): crbug.com/167187 fix size_t to int truncations.
145 'msvs_disabled_warnings': [4267, ], 145 'msvs_disabled_warnings': [4267, ],
146 }], 146 }],
147 ], 147 ],
148 }, 148 },
149 {
150 'target_name': 'crypto_perftests',
151 'type': 'executable',
152 'sources': [
153 'sha1_perftest.cc',
154 ],
155 'dependencies': [
156 'crypto',
157 'crypto_test_support',
158 '../base/base.gyp:base',
159 '../base/base.gyp:run_all_unittests',
160 '../base/base.gyp:test_support_base',
161 '../testing/gmock.gyp:gmock',
162 '../testing/gtest.gyp:gtest',
163 '../testing/perf/perf_test.gyp:perf_test',
164 '../third_party/boringssl/boringssl.gyp:boringssl',
165 ],
166 },
149 ], 167 ],
150 'conditions': [ 168 'conditions': [
151 ['OS == "win" and target_arch=="ia32"', { 169 ['OS == "win" and target_arch=="ia32"', {
152 'targets': [ 170 'targets': [
153 { 171 {
154 'target_name': 'crypto_nacl_win64', 172 'target_name': 'crypto_nacl_win64',
155 # We use the native APIs for the helper. 173 # We use the native APIs for the helper.
156 'type': '<(component)', 174 'type': '<(component)',
157 'dependencies': [ 175 'dependencies': [
158 '../base/base.gyp:base_win64', 176 '../base/base.gyp:base_win64',
(...skipping 69 matching lines...) Expand 10 before | Expand all | Expand 10 after
228 '../build/isolate.gypi', 246 '../build/isolate.gypi',
229 ], 247 ],
230 'sources': [ 248 'sources': [
231 'crypto_unittests.isolate', 249 'crypto_unittests.isolate',
232 ], 250 ],
233 }, 251 },
234 ], 252 ],
235 }], 253 }],
236 ], 254 ],
237 } 255 }
OLDNEW
« no previous file with comments | « crypto/BUILD.gn ('k') | crypto/sha1_perftest.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698