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

Side by Side Diff: crypto/crypto.gyp

Issue 7247005: crypto: add OpenPGP symmetric encryption for ChromeOS (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 9 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 | 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 74 matching lines...) Expand 10 before | Expand all | Expand 10 after
85 'symmetric_key_nss.cc', 85 'symmetric_key_nss.cc',
86 'third_party/nss/blapi.h', 86 'third_party/nss/blapi.h',
87 'third_party/nss/blapit.h', 87 'third_party/nss/blapit.h',
88 'third_party/nss/sha256.h', 88 'third_party/nss/sha256.h',
89 'third_party/nss/sha512.cc', 89 'third_party/nss/sha512.cc',
90 ], 90 ],
91 }, { 91 }, {
92 'sources!': [ 92 'sources!': [
93 'encryptor_openssl.cc', 93 'encryptor_openssl.cc',
94 'hmac_openssl.cc', 94 'hmac_openssl.cc',
95 'openpgp_symmetric_encryption_openssl.cc',
95 'openssl_util.cc', 96 'openssl_util.cc',
96 'openssl_util.h', 97 'openssl_util.h',
97 'rsa_private_key_openssl.cc', 98 'rsa_private_key_openssl.cc',
98 'secure_hash_openssl.cc', 99 'secure_hash_openssl.cc',
99 'signature_creator_openssl.cc', 100 'signature_creator_openssl.cc',
100 'signature_verifier_openssl.cc', 101 'signature_verifier_openssl.cc',
101 'symmetric_key_openssl.cc', 102 'symmetric_key_openssl.cc',
102 ], 103 ],
103 },], 104 },],
104 ], 105 ],
(...skipping 10 matching lines...) Expand all
115 'encryptor_openssl.cc', 116 'encryptor_openssl.cc',
116 'encryptor_win.cc', 117 'encryptor_win.cc',
117 'hmac.cc', 118 'hmac.cc',
118 'hmac.h', 119 'hmac.h',
119 'hmac_mac.cc', 120 'hmac_mac.cc',
120 'hmac_nss.cc', 121 'hmac_nss.cc',
121 'hmac_openssl.cc', 122 'hmac_openssl.cc',
122 'hmac_win.cc', 123 'hmac_win.cc',
123 'mac_security_services_lock.cc', 124 'mac_security_services_lock.cc',
124 'mac_security_services_lock.h', 125 'mac_security_services_lock.h',
125 'openssl_util.cc',
126 'openssl_util.h',
127 'nss_util.cc', 126 'nss_util.cc',
128 'nss_util.h', 127 'nss_util.h',
129 'nss_util_internal.h', 128 'nss_util_internal.h',
129 'openpgp_symmetric_encryption_openssl.cc',
130 'openpgp_symmetric_encryption.h',
131 'openssl_util.cc',
132 'openssl_util.h',
133 'rsa_private_key.cc',
130 'rsa_private_key.h', 134 'rsa_private_key.h',
131 'rsa_private_key.cc',
132 'rsa_private_key_mac.cc', 135 'rsa_private_key_mac.cc',
133 'rsa_private_key_nss.cc', 136 'rsa_private_key_nss.cc',
134 'rsa_private_key_openssl.cc', 137 'rsa_private_key_openssl.cc',
135 'rsa_private_key_win.cc', 138 'rsa_private_key_win.cc',
136 'scoped_capi_types.h', 139 'scoped_capi_types.h',
137 'scoped_nss_types.h', 140 'scoped_nss_types.h',
138 'secure_hash.h', 141 'secure_hash.h',
139 'secure_hash_default.cc', 142 'secure_hash_default.cc',
140 'secure_hash_openssl.cc', 143 'secure_hash_openssl.cc',
141 'sha2.cc', 144 'sha2.cc',
(...skipping 29 matching lines...) Expand all
171 # Tests. 174 # Tests.
172 'encryptor_unittest.cc', 175 'encryptor_unittest.cc',
173 'hmac_unittest.cc', 176 'hmac_unittest.cc',
174 'rsa_private_key_unittest.cc', 177 'rsa_private_key_unittest.cc',
175 'rsa_private_key_nss_unittest.cc', 178 'rsa_private_key_nss_unittest.cc',
176 'secure_hash_unittest.cc', 179 'secure_hash_unittest.cc',
177 'sha2_unittest.cc', 180 'sha2_unittest.cc',
178 'signature_creator_unittest.cc', 181 'signature_creator_unittest.cc',
179 'signature_verifier_unittest.cc', 182 'signature_verifier_unittest.cc',
180 'symmetric_key_unittest.cc', 183 'symmetric_key_unittest.cc',
184 'openpgp_symmetric_encryption_test_openssl.cc',
181 ], 185 ],
182 'dependencies': [ 186 'dependencies': [
183 'crypto', 187 'crypto',
184 '../base/base.gyp:base', 188 '../base/base.gyp:base',
185 '../base/base.gyp:test_support_base', 189 '../base/base.gyp:test_support_base',
186 '../testing/gmock.gyp:gmock', 190 '../testing/gmock.gyp:gmock',
187 '../testing/gtest.gyp:gtest', 191 '../testing/gtest.gyp:gtest',
188 ], 192 ],
189 'conditions': [ 193 'conditions': [
190 [ 'os_posix == 1 and OS != "mac"', { 194 [ 'os_posix == 1 and OS != "mac"', {
(...skipping 15 matching lines...) Expand all
206 }], 210 }],
207 [ 'OS == "mac" or OS == "win"', { 211 [ 'OS == "mac" or OS == "win"', {
208 'dependencies': [ 212 'dependencies': [
209 '../third_party/nss/nss.gyp:nss', 213 '../third_party/nss/nss.gyp:nss',
210 ], 214 ],
211 }], 215 }],
212 [ 'use_openssl==1', { 216 [ 'use_openssl==1', {
213 'sources!': [ 217 'sources!': [
214 'rsa_private_key_nss_unittest.cc', 218 'rsa_private_key_nss_unittest.cc',
215 ], 219 ],
220 }, {
221 'sources!': [
222 'openpgp_symmetric_encryption_test_openssl.cc',
223 ],
216 }], 224 }],
217 ], 225 ],
218 }, 226 },
219 ], 227 ],
220 } 228 }
OLDNEW
« no previous file with comments | « no previous file | crypto/openpgp_symmetric_encryption.h » ('j') | crypto/openpgp_symmetric_encryption_openssl.cc » ('J')

Powered by Google App Engine
This is Rietveld 408576698