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

Side by Side Diff: crypto/crypto.gyp

Issue 6873156: Move crypto_helpers from sync to base (Closed) Base URL: http://git.chromium.org/git/chromium.git@trunk
Patch Set: Move crypto_helpers to crypto instead of base. Created 9 years, 8 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 | Annotate | Revision Log
OLDNEW
1 # Copyright (c) 2011 The Chromium Authors. All rights reserved. 1 # Copyright (c) 2011 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 'targets': [ 9 'targets': [
10 { 10 {
(...skipping 108 matching lines...) Expand 10 before | Expand all | Expand 10 after
119 'encryptor_nss.cc', 119 'encryptor_nss.cc',
120 'encryptor_openssl.cc', 120 'encryptor_openssl.cc',
121 'encryptor_win.cc', 121 'encryptor_win.cc',
122 'hmac.h', 122 'hmac.h',
123 'hmac_mac.cc', 123 'hmac_mac.cc',
124 'hmac_nss.cc', 124 'hmac_nss.cc',
125 'hmac_openssl.cc', 125 'hmac_openssl.cc',
126 'hmac_win.cc', 126 'hmac_win.cc',
127 'mac_security_services_lock.cc', 127 'mac_security_services_lock.cc',
128 'mac_security_services_lock.h', 128 'mac_security_services_lock.h',
129 'md5_calculator.cc',
130 'md5_calculator.h',
129 'openssl_util.cc', 131 'openssl_util.cc',
130 'openssl_util.h', 132 'openssl_util.h',
131 'nss_util.cc', 133 'nss_util.cc',
132 'nss_util.h', 134 'nss_util.h',
133 'nss_util_internal.h', 135 'nss_util_internal.h',
134 'rsa_private_key.h', 136 'rsa_private_key.h',
137 'random.cc',
138 'random.h',
135 'rsa_private_key.cc', 139 'rsa_private_key.cc',
136 'rsa_private_key_mac.cc', 140 'rsa_private_key_mac.cc',
137 'rsa_private_key_nss.cc', 141 'rsa_private_key_nss.cc',
138 'rsa_private_key_openssl.cc', 142 'rsa_private_key_openssl.cc',
139 'rsa_private_key_win.cc', 143 'rsa_private_key_win.cc',
140 'scoped_capi_types.h', 144 'scoped_capi_types.h',
141 'scoped_nss_types.h', 145 'scoped_nss_types.h',
142 'secure_hash.h', 146 'secure_hash.h',
143 'secure_hash_default.cc', 147 'secure_hash_default.cc',
144 'secure_hash_openssl.cc', 148 'secure_hash_openssl.cc',
(...skipping 23 matching lines...) Expand all
168 { 172 {
169 'target_name': 'crypto_unittests', 173 'target_name': 'crypto_unittests',
170 'type': 'executable', 174 'type': 'executable',
171 'sources': [ 175 'sources': [
172 # Infrastructure files. 176 # Infrastructure files.
173 'run_all_unittests.cc', 177 'run_all_unittests.cc',
174 178
175 # Tests. 179 # Tests.
176 'encryptor_unittest.cc', 180 'encryptor_unittest.cc',
177 'hmac_unittest.cc', 181 'hmac_unittest.cc',
182 'md5_calculator_unittest.cc',
183 'random_unittest.cc',
178 'rsa_private_key_unittest.cc', 184 'rsa_private_key_unittest.cc',
179 'rsa_private_key_nss_unittest.cc', 185 'rsa_private_key_nss_unittest.cc',
180 'secure_hash_unittest.cc', 186 'secure_hash_unittest.cc',
181 'sha2_unittest.cc', 187 'sha2_unittest.cc',
182 'signature_creator_unittest.cc', 188 'signature_creator_unittest.cc',
183 'signature_verifier_unittest.cc', 189 'signature_verifier_unittest.cc',
184 'symmetric_key_unittest.cc', 190 'symmetric_key_unittest.cc',
185 ], 191 ],
186 'dependencies': [ 192 'dependencies': [
187 'crypto', 193 'crypto',
(...skipping 27 matching lines...) Expand all
215 }], 221 }],
216 [ 'use_openssl==1', { 222 [ 'use_openssl==1', {
217 'sources!': [ 223 'sources!': [
218 'rsa_private_key_nss_unittest.cc', 224 'rsa_private_key_nss_unittest.cc',
219 ], 225 ],
220 }], 226 }],
221 ], 227 ],
222 }, 228 },
223 ], 229 ],
224 } 230 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698