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

Side by Side Diff: net/net.gyp

Issue 11549033: Separate CertVerifyProcAndroid from CertVerifyProcOpenSSL (Closed) Base URL: http://git.chromium.org/chromium/src.git@master
Patch Set: address Ryan's remarks Created 8 years 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
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 'linux_link_kerberos%': 0, 9 'linux_link_kerberos%': 0,
10 'conditions': [ 10 'conditions': [
(...skipping 78 matching lines...) Expand 10 before | Expand all | Expand 10 after
89 'base/cert_database_mac.cc', 89 'base/cert_database_mac.cc',
90 'base/cert_database_nss.cc', 90 'base/cert_database_nss.cc',
91 'base/cert_database_openssl.cc', 91 'base/cert_database_openssl.cc',
92 'base/cert_database_win.cc', 92 'base/cert_database_win.cc',
93 'base/cert_status_flags.cc', 93 'base/cert_status_flags.cc',
94 'base/cert_status_flags.h', 94 'base/cert_status_flags.h',
95 'base/cert_verifier.cc', 95 'base/cert_verifier.cc',
96 'base/cert_verifier.h', 96 'base/cert_verifier.h',
97 'base/cert_verify_proc.cc', 97 'base/cert_verify_proc.cc',
98 'base/cert_verify_proc.h', 98 'base/cert_verify_proc.h',
99 'base/cert_verify_proc_android.cc',
100 'base/cert_verify_proc_android.h',
99 'base/cert_verify_proc_mac.cc', 101 'base/cert_verify_proc_mac.cc',
100 'base/cert_verify_proc_mac.h', 102 'base/cert_verify_proc_mac.h',
101 'base/cert_verify_proc_nss.cc', 103 'base/cert_verify_proc_nss.cc',
102 'base/cert_verify_proc_nss.h', 104 'base/cert_verify_proc_nss.h',
103 'base/cert_verify_proc_openssl.cc', 105 'base/cert_verify_proc_openssl.cc',
104 'base/cert_verify_proc_openssl.h', 106 'base/cert_verify_proc_openssl.h',
105 'base/cert_verify_proc_win.cc', 107 'base/cert_verify_proc_win.cc',
106 'base/cert_verify_proc_win.h', 108 'base/cert_verify_proc_win.h',
107 'base/cert_verify_result.cc', 109 'base/cert_verify_result.cc',
108 'base/cert_verify_result.h', 110 'base/cert_verify_result.h',
(...skipping 1098 matching lines...) Expand 10 before | Expand all | Expand 10 after
1207 'net_java', 1209 'net_java',
1208 ], 1210 ],
1209 }], 1211 }],
1210 [ 'OS == "android"', { 1212 [ 'OS == "android"', {
1211 'dependencies': [ 1213 'dependencies': [
1212 '../third_party/openssl/openssl.gyp:openssl', 1214 '../third_party/openssl/openssl.gyp:openssl',
1213 'net_jni_headers', 1215 'net_jni_headers',
1214 ], 1216 ],
1215 'sources!': [ 1217 'sources!': [
1216 'base/cert_database_openssl.cc', 1218 'base/cert_database_openssl.cc',
1219 'base/cert_verify_proc_openssl.cc',
1217 'base/openssl_memory_private_key_store.cc', 1220 'base/openssl_memory_private_key_store.cc',
1218 'base/test_root_certs_openssl.cc', 1221 'base/test_root_certs_openssl.cc',
1219 ], 1222 ],
1220 }, { # else OS != "android" 1223 }, { # else OS != "android"
1221 'defines': [ 1224 'defines': [
1222 # These are the features Android doesn't support. 1225 # These are the features Android doesn't support.
1223 'ENABLE_MEDIA_CODEC_THEORA', 1226 'ENABLE_MEDIA_CODEC_THEORA',
1224 ], 1227 ],
1225 }, 1228 },
1226 ], 1229 ],
(...skipping 1154 matching lines...) Expand 10 before | Expand all | Expand 10 after
2381 '--result', '<@(_outputs)', 2384 '--result', '<@(_outputs)',
2382 '--isolate', 'net_unittests.isolate', 2385 '--isolate', 'net_unittests.isolate',
2383 ], 2386 ],
2384 }, 2387 },
2385 ], 2388 ],
2386 }, 2389 },
2387 ], 2390 ],
2388 }], 2391 }],
2389 ], 2392 ],
2390 } 2393 }
OLDNEW
« net/base/cert_verify_proc_android.cc ('K') | « net/base/cert_verify_proc_openssl.cc ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698