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

Side by Side Diff: net/net_common.gypi

Issue 1128043007: Support Kerberos on Android (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Fix Android GN build 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 2015 The Chromium Authors. All rights reserved. 1 # Copyright 2015 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 # This target is included in both 'net' and 'net_small'. 6 # This target is included in both 'net' and 'net_small'.
7 'type': '<(component)', 7 'type': '<(component)',
8 'variables': { 'enable_wexit_time_destructors': 1, }, 8 'variables': { 'enable_wexit_time_destructors': 1, },
9 'dependencies': [ 9 'dependencies': [
10 '../base/base.gyp:base', 10 '../base/base.gyp:base',
(...skipping 365 matching lines...) Expand 10 before | Expand all | Expand 10 after
376 }], 376 }],
377 [ 'OS == "android"', { 377 [ 'OS == "android"', {
378 'dependencies': [ 378 'dependencies': [
379 'net_jni_headers', 379 'net_jni_headers',
380 ], 380 ],
381 'sources!': [ 381 'sources!': [
382 'base/openssl_private_key_store_memory.cc', 382 'base/openssl_private_key_store_memory.cc',
383 'cert/cert_database_openssl.cc', 383 'cert/cert_database_openssl.cc',
384 'cert/cert_verify_proc_openssl.cc', 384 'cert/cert_verify_proc_openssl.cc',
385 'cert/test_root_certs_openssl.cc', 385 'cert/test_root_certs_openssl.cc',
386 'http/http_auth_gssapi_posix.cc',
387 'http/http_auth_gssapi_posix.h',
386 ], 388 ],
387 }, 389 },
388 ], 390 ],
389 ], 391 ],
390 'target_conditions': [ 392 'target_conditions': [
391 # These source files are excluded by default platform rules, but they 393 # These source files are excluded by default platform rules, but they
392 # are needed in specific cases on other platforms. Re-including them can 394 # are needed in specific cases on other platforms. Re-including them can
393 # only be done in target_conditions as it is evaluated after the 395 # only be done in target_conditions as it is evaluated after the
394 # platform rules. 396 # platform rules.
395 ['OS == "android"', { 397 ['OS == "android"', {
(...skipping 23 matching lines...) Expand all
419 ['include', '^cert/test_root_certs_nss\\.cc$'], 421 ['include', '^cert/test_root_certs_nss\\.cc$'],
420 ['include', '^cert/x509_util_nss_certs\\.cc$'], 422 ['include', '^cert/x509_util_nss_certs\\.cc$'],
421 ['include', '^cert_net/nss_ocsp\\.cc$'], 423 ['include', '^cert_net/nss_ocsp\\.cc$'],
422 ['include', '^cert_net/nss_ocsp\\.h$'], 424 ['include', '^cert_net/nss_ocsp\\.h$'],
423 ['include', '^proxy/proxy_resolver_mac\\.cc$'], 425 ['include', '^proxy/proxy_resolver_mac\\.cc$'],
424 ['include', '^proxy/proxy_server_mac\\.cc$'], 426 ['include', '^proxy/proxy_server_mac\\.cc$'],
425 ], 427 ],
426 }], 428 }],
427 ], 429 ],
428 } 430 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698