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

Side by Side Diff: net/net.gypi

Issue 881213004: Support building BoringSSL with NSS certificates. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: more ios Created 5 years, 9 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
OLDNEW
1 # Copyright 2014 The Chromium Authors. All rights reserved. 1 # Copyright 2014 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 # This file is shared between the regular GYP build, the NaCl GYP build, and 5 # This file is shared between the regular GYP build, the NaCl GYP build, and
6 # the GN build. For GN support, it must have no conditionals or anything like 6 # the GN build. For GN support, it must have no conditionals or anything like
7 # that beyond the simple one-level-deep dictionary of values. 7 # that beyond the simple one-level-deep dictionary of values.
8 { 8 {
9 'variables': { 9 'variables': {
10 # Subset of net source files that are compiled for NaCl (net_nacl target). 10 # Subset of net source files that are compiled for NaCl (net_nacl target).
(...skipping 128 matching lines...) Expand 10 before | Expand all | Expand 10 after
139 'ssl/channel_id_service.cc', 139 'ssl/channel_id_service.cc',
140 'ssl/channel_id_service.h', 140 'ssl/channel_id_service.h',
141 'ssl/channel_id_store.cc', 141 'ssl/channel_id_store.cc',
142 'ssl/channel_id_store.h', 142 'ssl/channel_id_store.h',
143 'ssl/default_channel_id_store.cc', 143 'ssl/default_channel_id_store.cc',
144 'ssl/default_channel_id_store.h', 144 'ssl/default_channel_id_store.h',
145 'ssl/openssl_client_key_store.cc', 145 'ssl/openssl_client_key_store.cc',
146 'ssl/openssl_client_key_store.h', 146 'ssl/openssl_client_key_store.h',
147 'ssl/openssl_platform_key.h', 147 'ssl/openssl_platform_key.h',
148 'ssl/openssl_platform_key_mac.cc', 148 'ssl/openssl_platform_key_mac.cc',
149 'ssl/openssl_platform_key_nss.cc',
149 'ssl/openssl_platform_key_win.cc', 150 'ssl/openssl_platform_key_win.cc',
150 'ssl/openssl_ssl_util.cc', 151 'ssl/openssl_ssl_util.cc',
151 'ssl/openssl_ssl_util.h', 152 'ssl/openssl_ssl_util.h',
152 'ssl/signed_certificate_timestamp_and_status.cc', 153 'ssl/signed_certificate_timestamp_and_status.cc',
153 'ssl/signed_certificate_timestamp_and_status.h', 154 'ssl/signed_certificate_timestamp_and_status.h',
154 'ssl/ssl_cert_request_info.cc', 155 'ssl/ssl_cert_request_info.cc',
155 'ssl/ssl_cert_request_info.h', 156 'ssl/ssl_cert_request_info.h',
156 'ssl/ssl_cipher_suite_names.cc', 157 'ssl/ssl_cipher_suite_names.cc',
157 'ssl/ssl_cipher_suite_names.h', 158 'ssl/ssl_cipher_suite_names.h',
158 'ssl/ssl_client_auth_cache.cc', 159 'ssl/ssl_client_auth_cache.cc',
(...skipping 222 matching lines...) Expand 10 before | Expand all | Expand 10 after
381 'cert/x509_certificate_nss.cc', 382 'cert/x509_certificate_nss.cc',
382 'cert/x509_certificate_win.cc', 383 'cert/x509_certificate_win.cc',
383 'cert/x509_util_android.cc', 384 'cert/x509_util_android.cc',
384 'cert/x509_util_android.h', 385 'cert/x509_util_android.h',
385 'cert/x509_util_ios.cc', 386 'cert/x509_util_ios.cc',
386 'cert/x509_util_ios.h', 387 'cert/x509_util_ios.h',
387 'cert/x509_util_mac.cc', 388 'cert/x509_util_mac.cc',
388 'cert/x509_util_mac.h', 389 'cert/x509_util_mac.h',
389 'cert/x509_util_nss.cc', 390 'cert/x509_util_nss.cc',
390 'cert/x509_util_nss.h', 391 'cert/x509_util_nss.h',
392 'cert/x509_util_nss_certs.cc',
391 'cookies/canonical_cookie.cc', 393 'cookies/canonical_cookie.cc',
392 'cookies/canonical_cookie.h', 394 'cookies/canonical_cookie.h',
393 'cookies/cookie_constants.cc', 395 'cookies/cookie_constants.cc',
394 'cookies/cookie_constants.h', 396 'cookies/cookie_constants.h',
395 'cookies/cookie_monster.cc', 397 'cookies/cookie_monster.cc',
396 'cookies/cookie_monster.h', 398 'cookies/cookie_monster.h',
397 'cookies/cookie_options.h', 399 'cookies/cookie_options.h',
398 'cookies/cookie_store.cc', 400 'cookies/cookie_store.cc',
399 'cookies/cookie_store.h', 401 'cookies/cookie_store.h',
400 'cookies/cookie_util.cc', 402 'cookies/cookie_util.cc',
(...skipping 1375 matching lines...) Expand 10 before | Expand all | Expand 10 after
1776 'base/mac/url_conversions_unittest.mm', 1778 'base/mac/url_conversions_unittest.mm',
1777 ], 1779 ],
1778 'net_docs_script': 'tools/net_docs/net_docs.py', 1780 'net_docs_script': 'tools/net_docs/net_docs.py',
1779 'net_docs_sources': [ 1781 'net_docs_sources': [
1780 'README.md', 1782 'README.md',
1781 'sdch/README.md', 1783 'sdch/README.md',
1782 ], 1784 ],
1783 'net_docs_output_dir': '<(PRODUCT_DIR)/net/docs', 1785 'net_docs_output_dir': '<(PRODUCT_DIR)/net/docs',
1784 } 1786 }
1785 } 1787 }
OLDNEW
« net/net.gyp ('K') | « net/net.gyp ('k') | net/socket/ssl_client_socket_openssl.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698