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

Side by Side Diff: net/net.gypi

Issue 1128043007: Support Kerberos on Android (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Deal with comments and build and test failures. Created 5 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
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 167 matching lines...) Expand 10 before | Expand all | Expand 10 after
178 'ssl/ssl_info.cc', 178 'ssl/ssl_info.cc',
179 'ssl/ssl_info.h', 179 'ssl/ssl_info.h',
180 ], 180 ],
181 'net_non_nacl_sources': [ 181 'net_non_nacl_sources': [
182 'android/android_private_key.cc', 182 'android/android_private_key.cc',
183 'android/android_private_key.h', 183 'android/android_private_key.h',
184 'android/cert_verify_result_android.cc', 184 'android/cert_verify_result_android.cc',
185 'android/cert_verify_result_android.h', 185 'android/cert_verify_result_android.h',
186 'android/gurl_utils.cc', 186 'android/gurl_utils.cc',
187 'android/gurl_utils.h', 187 'android/gurl_utils.h',
188 'android/http_auth_negotiate_android.cc',
189 'android/http_auth_negotiate_android.h',
188 'android/keystore.cc', 190 'android/keystore.cc',
189 'android/keystore.h', 191 'android/keystore.h',
190 'android/keystore_openssl.cc', 192 'android/keystore_openssl.cc',
191 'android/keystore_openssl.h', 193 'android/keystore_openssl.h',
192 'android/legacy_openssl.h', 194 'android/legacy_openssl.h',
193 'android/net_jni_registrar.cc', 195 'android/net_jni_registrar.cc',
194 'android/net_jni_registrar.h', 196 'android/net_jni_registrar.h',
195 'android/network_change_notifier_android.cc', 197 'android/network_change_notifier_android.cc',
196 'android/network_change_notifier_android.h', 198 'android/network_change_notifier_android.h',
197 'android/network_change_notifier_delegate_android.cc', 199 'android/network_change_notifier_delegate_android.cc',
(...skipping 447 matching lines...) Expand 10 before | Expand all | Expand 10 after
645 'http/http_auth_handler.cc', 647 'http/http_auth_handler.cc',
646 'http/http_auth_handler.h', 648 'http/http_auth_handler.h',
647 'http/http_auth_handler_basic.cc', 649 'http/http_auth_handler_basic.cc',
648 'http/http_auth_handler_basic.h', 650 'http/http_auth_handler_basic.h',
649 'http/http_auth_handler_digest.cc', 651 'http/http_auth_handler_digest.cc',
650 'http/http_auth_handler_digest.h', 652 'http/http_auth_handler_digest.h',
651 'http/http_auth_handler_factory.cc', 653 'http/http_auth_handler_factory.cc',
652 'http/http_auth_handler_factory.h', 654 'http/http_auth_handler_factory.h',
653 'http/http_auth_handler_negotiate.cc', 655 'http/http_auth_handler_negotiate.cc',
654 'http/http_auth_handler_negotiate.h', 656 'http/http_auth_handler_negotiate.h',
657 'http/http_auth_handler_negotiate_parse.cc',
658 'http/http_auth_handler_negotiate_parse.h',
655 'http/http_auth_handler_ntlm.cc', 659 'http/http_auth_handler_ntlm.cc',
656 'http/http_auth_handler_ntlm.h', 660 'http/http_auth_handler_ntlm.h',
657 'http/http_auth_handler_ntlm_portable.cc', 661 'http/http_auth_handler_ntlm_portable.cc',
658 'http/http_auth_handler_ntlm_win.cc', 662 'http/http_auth_handler_ntlm_win.cc',
659 'http/http_auth_sspi_win.cc', 663 'http/http_auth_sspi_win.cc',
660 'http/http_auth_sspi_win.h', 664 'http/http_auth_sspi_win.h',
661 'http/http_basic_state.cc', 665 'http/http_basic_state.cc',
662 'http/http_basic_state.h', 666 'http/http_basic_state.h',
663 'http/http_basic_stream.cc', 667 'http/http_basic_stream.cc',
664 'http/http_basic_stream.h', 668 'http/http_basic_stream.h',
(...skipping 608 matching lines...) Expand 10 before | Expand all | Expand 10 after
1273 'websockets/websocket_stream.h', 1277 'websockets/websocket_stream.h',
1274 ], 1278 ],
1275 'net_extras_sources': [ 1279 'net_extras_sources': [
1276 'extras/sqlite/cookie_crypto_delegate.h', 1280 'extras/sqlite/cookie_crypto_delegate.h',
1277 'extras/sqlite/sqlite_channel_id_store.cc', 1281 'extras/sqlite/sqlite_channel_id_store.cc',
1278 'extras/sqlite/sqlite_channel_id_store.h', 1282 'extras/sqlite/sqlite_channel_id_store.h',
1279 'extras/sqlite/sqlite_persistent_cookie_store.cc', 1283 'extras/sqlite/sqlite_persistent_cookie_store.cc',
1280 'extras/sqlite/sqlite_persistent_cookie_store.h', 1284 'extras/sqlite/sqlite_persistent_cookie_store.h',
1281 ], 1285 ],
1282 'net_test_sources': [ 1286 'net_test_sources': [
1287 'android/dummy_spnego_authenticator.cc',
1288 'android/dummy_spnego_authenticator.h',
1289 'android/http_auth_negotiate_android_unittest.cc',
1283 'android/keystore_unittest.cc', 1290 'android/keystore_unittest.cc',
1284 'android/network_change_notifier_android_unittest.cc', 1291 'android/network_change_notifier_android_unittest.cc',
1285 'base/address_list_unittest.cc', 1292 'base/address_list_unittest.cc',
1286 'base/address_tracker_linux_unittest.cc', 1293 'base/address_tracker_linux_unittest.cc',
1287 'base/backoff_entry_serializer_unittest.cc', 1294 'base/backoff_entry_serializer_unittest.cc',
1288 'base/backoff_entry_unittest.cc', 1295 'base/backoff_entry_unittest.cc',
1289 'base/chunked_upload_data_stream_unittest.cc', 1296 'base/chunked_upload_data_stream_unittest.cc',
1290 'base/data_url_unittest.cc', 1297 'base/data_url_unittest.cc',
1291 'base/directory_lister_unittest.cc', 1298 'base/directory_lister_unittest.cc',
1292 'base/dns_util_unittest.cc', 1299 'base/dns_util_unittest.cc',
(...skipping 524 matching lines...) Expand 10 before | Expand all | Expand 10 after
1817 'base/mac/url_conversions_unittest.mm', 1824 'base/mac/url_conversions_unittest.mm',
1818 ], 1825 ],
1819 'net_docs_script': 'tools/net_docs/net_docs.py', 1826 'net_docs_script': 'tools/net_docs/net_docs.py',
1820 'net_docs_sources': [ 1827 'net_docs_sources': [
1821 'README.md', 1828 'README.md',
1822 'sdch/README.md', 1829 'sdch/README.md',
1823 ], 1830 ],
1824 'net_docs_output_dir': '<(PRODUCT_DIR)/net/docs', 1831 'net_docs_output_dir': '<(PRODUCT_DIR)/net/docs',
1825 } 1832 }
1826 } 1833 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698