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

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: Correct headers. 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 114 matching lines...) Expand 10 before | Expand all | Expand 10 after
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 'openssl_util.cc', 129 'openssl_util.cc',
130 'openssl_util.h', 130 'openssl_util.h',
131 'nss_util.cc', 131 'nss_util.cc',
132 'nss_util.h', 132 'nss_util.h',
133 'nss_util_internal.h', 133 'nss_util_internal.h',
134 'rsa_private_key.h', 134 'rsa_private_key.h',
135 'random.cc',
136 'random.h',
135 'rsa_private_key.cc', 137 'rsa_private_key.cc',
136 'rsa_private_key_mac.cc', 138 'rsa_private_key_mac.cc',
137 'rsa_private_key_nss.cc', 139 'rsa_private_key_nss.cc',
138 'rsa_private_key_openssl.cc', 140 'rsa_private_key_openssl.cc',
139 'rsa_private_key_win.cc', 141 'rsa_private_key_win.cc',
140 'scoped_capi_types.h', 142 'scoped_capi_types.h',
141 'scoped_nss_types.h', 143 'scoped_nss_types.h',
142 'secure_hash.h', 144 'secure_hash.h',
143 'secure_hash_default.cc', 145 'secure_hash_default.cc',
144 'secure_hash_openssl.cc', 146 'secure_hash_openssl.cc',
(...skipping 23 matching lines...) Expand all
168 { 170 {
169 'target_name': 'crypto_unittests', 171 'target_name': 'crypto_unittests',
170 'type': 'executable', 172 'type': 'executable',
171 'sources': [ 173 'sources': [
172 # Infrastructure files. 174 # Infrastructure files.
173 'run_all_unittests.cc', 175 'run_all_unittests.cc',
174 176
175 # Tests. 177 # Tests.
176 'encryptor_unittest.cc', 178 'encryptor_unittest.cc',
177 'hmac_unittest.cc', 179 'hmac_unittest.cc',
180 'random_unittest.cc',
178 'rsa_private_key_unittest.cc', 181 'rsa_private_key_unittest.cc',
179 'rsa_private_key_nss_unittest.cc', 182 'rsa_private_key_nss_unittest.cc',
180 'secure_hash_unittest.cc', 183 'secure_hash_unittest.cc',
181 'sha2_unittest.cc', 184 'sha2_unittest.cc',
182 'signature_creator_unittest.cc', 185 'signature_creator_unittest.cc',
183 'signature_verifier_unittest.cc', 186 'signature_verifier_unittest.cc',
184 'symmetric_key_unittest.cc', 187 'symmetric_key_unittest.cc',
185 ], 188 ],
186 'dependencies': [ 189 'dependencies': [
187 'crypto', 190 'crypto',
(...skipping 27 matching lines...) Expand all
215 }], 218 }],
216 [ 'use_openssl==1', { 219 [ 'use_openssl==1', {
217 'sources!': [ 220 'sources!': [
218 'rsa_private_key_nss_unittest.cc', 221 'rsa_private_key_nss_unittest.cc',
219 ], 222 ],
220 }], 223 }],
221 ], 224 ],
222 }, 225 },
223 ], 226 ],
224 } 227 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698