| OLD | NEW |
| 1 # Copyright (c) 2011 The Chromium Authors. All rights reserved. | 1 # Copyright (c) 2011 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 'use_kerberos%': 1, | 9 'use_kerberos%': 1, |
| 10 'linux_link_kerberos%': 0, | |
| 11 }, | 10 }, |
| 12 'targets': [ | 11 'targets': [ |
| 13 { | 12 { |
| 14 'target_name': 'net', | 13 'target_name': 'net', |
| 15 'type': '<(component)', | 14 'type': '<(component)', |
| 16 'dependencies': [ | 15 'dependencies': [ |
| 17 '../base/base.gyp:base', | 16 '../base/base.gyp:base', |
| 18 '../base/base.gyp:base_i18n', | 17 '../base/base.gyp:base_i18n', |
| 19 '../base/third_party/dynamic_annotations/dynamic_annotations.gyp:dynamic
_annotations', | 18 '../base/third_party/dynamic_annotations/dynamic_annotations.gyp:dynamic
_annotations', |
| 20 '../build/temp_gyp/googleurl.gyp:googleurl', | 19 '../build/temp_gyp/googleurl.gyp:googleurl', |
| (...skipping 683 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 704 ['chromeos==1', { | 703 ['chromeos==1', { |
| 705 'sources!': [ | 704 'sources!': [ |
| 706 'proxy/proxy_config_service_linux.cc', | 705 'proxy/proxy_config_service_linux.cc', |
| 707 'proxy/proxy_config_service_linux.h', | 706 'proxy/proxy_config_service_linux.h', |
| 708 ], | 707 ], |
| 709 }], | 708 }], |
| 710 ['use_kerberos==1', { | 709 ['use_kerberos==1', { |
| 711 'defines': [ | 710 'defines': [ |
| 712 'USE_KERBEROS', | 711 'USE_KERBEROS', |
| 713 ], | 712 ], |
| 714 'conditions': [ | |
| 715 ['linux_link_kerberos==1', { | |
| 716 'link_settings': { | |
| 717 'ldflags': [ | |
| 718 '<!@(krb5-config --libs gssapi)', | |
| 719 ], | |
| 720 }, | |
| 721 }, { # linux_link_kerberos==0 | |
| 722 'defines': [ | |
| 723 'DLOPEN_KERBEROS', | |
| 724 ], | |
| 725 }], | |
| 726 ], | |
| 727 }, { # use_kerberos == 0 | 713 }, { # use_kerberos == 0 |
| 728 'sources!': [ | 714 'sources!': [ |
| 729 'http/http_auth_gssapi_posix.cc', | 715 'http/http_auth_gssapi_posix.cc', |
| 730 'http/http_auth_gssapi_posix.h', | 716 'http/http_auth_gssapi_posix.h', |
| 731 'http/http_auth_handler_negotiate.h', | 717 'http/http_auth_handler_negotiate.h', |
| 732 'http/http_auth_handler_negotiate.cc', | 718 'http/http_auth_handler_negotiate.cc', |
| 733 ], | 719 ], |
| 734 }], | 720 }], |
| 735 ['use_openssl==1', { | 721 ['use_openssl==1', { |
| 736 'sources!': [ | 722 'sources!': [ |
| (...skipping 797 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1534 'tools/dump_cache/url_to_filename_encoder.cc', | 1520 'tools/dump_cache/url_to_filename_encoder.cc', |
| 1535 'tools/dump_cache/url_to_filename_encoder.h', | 1521 'tools/dump_cache/url_to_filename_encoder.h', |
| 1536 'tools/dump_cache/url_utilities.h', | 1522 'tools/dump_cache/url_utilities.h', |
| 1537 'tools/dump_cache/url_utilities.cc', | 1523 'tools/dump_cache/url_utilities.cc', |
| 1538 ], | 1524 ], |
| 1539 }, | 1525 }, |
| 1540 ], | 1526 ], |
| 1541 }], | 1527 }], |
| 1542 ], | 1528 ], |
| 1543 } | 1529 } |
| OLD | NEW |