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

Side by Side Diff: net/net.gyp

Issue 10983023: Port certificate verification to iOS. (Closed) Base URL: http://git.chromium.org/chromium/src.git@master
Patch Set: Review comments Created 8 years, 2 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 | « net/base/x509_util_ios.cc ('k') | no next file » | 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 'linux_link_kerberos%': 0, 9 'linux_link_kerberos%': 0,
10 'conditions': [ 10 'conditions': [
(...skipping 1180 matching lines...) Expand 10 before | Expand all | Expand 10 after
1191 }], 1191 }],
1192 ['OS == "ios"', { 1192 ['OS == "ios"', {
1193 'sources/': [ 1193 'sources/': [
1194 ['include', '^base/network_change_notifier_mac\\.cc$'], 1194 ['include', '^base/network_change_notifier_mac\\.cc$'],
1195 ['include', '^base/network_config_watcher_mac\\.cc$'], 1195 ['include', '^base/network_config_watcher_mac\\.cc$'],
1196 ['include', '^base/platform_mime_util_mac\\.mm$'], 1196 ['include', '^base/platform_mime_util_mac\\.mm$'],
1197 ['include', '^proxy/proxy_resolver_mac\\.cc$'], 1197 ['include', '^proxy/proxy_resolver_mac\\.cc$'],
1198 # The iOS implementation only partially uses NSS and thus does not 1198 # The iOS implementation only partially uses NSS and thus does not
1199 # defines |use_nss|. In particular the |USE_NSS| preprocessor 1199 # defines |use_nss|. In particular the |USE_NSS| preprocessor
1200 # definition is not used. The following files are needed though: 1200 # definition is not used. The following files are needed though:
1201 ['include', '^base/cert_verify_proc_nss\\.cc$'],
1202 ['include', '^base/cert_verify_proc_nss\\.h$'],
1201 ['include', '^base/test_root_certs_nss\\.cc$'], 1203 ['include', '^base/test_root_certs_nss\\.cc$'],
1202 ['include', '^base/x509_util_nss\\.cc$'], 1204 ['include', '^base/x509_util_nss\\.cc$'],
1203 ['include', '^base/x509_util_nss\\.h$'], 1205 ['include', '^base/x509_util_nss\\.h$'],
1206 ['include', '^ocsp/nss_ocsp\\.cc$'],
1207 ['include', '^ocsp/nss_ocsp\\.h$'],
1204 ], 1208 ],
1205 }], 1209 }],
1206 ], 1210 ],
1207 }, 1211 },
1208 { 1212 {
1209 'target_name': 'net_unittests', 1213 'target_name': 'net_unittests',
1210 'type': '<(gtest_target_type)', 1214 'type': '<(gtest_target_type)',
1211 'dependencies': [ 1215 'dependencies': [
1212 '../base/base.gyp:base', 1216 '../base/base.gyp:base',
1213 '../base/base.gyp:base_i18n', 1217 '../base/base.gyp:base_i18n',
(...skipping 1096 matching lines...) Expand 10 before | Expand all | Expand 10 after
2310 '--result', '<@(_outputs)', 2314 '--result', '<@(_outputs)',
2311 '--isolate', 'net_unittests.isolate', 2315 '--isolate', 'net_unittests.isolate',
2312 ], 2316 ],
2313 }, 2317 },
2314 ], 2318 ],
2315 }, 2319 },
2316 ], 2320 ],
2317 }], 2321 }],
2318 ], 2322 ],
2319 } 2323 }
OLDNEW
« no previous file with comments | « net/base/x509_util_ios.cc ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698