| 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 'use_domain_suffix_trie': 1, |
| 8 | 9 |
| 9 'linux_link_kerberos%': 0, | 10 'linux_link_kerberos%': 0, |
| 10 'conditions': [ | 11 'conditions': [ |
| 11 ['chromeos==1', { | 12 ['chromeos==1', { |
| 12 # Disable Kerberos on ChromeOS, at least for now. | 13 # Disable Kerberos on ChromeOS, at least for now. |
| 13 # It needs configuration (krb5.conf and so on). | 14 # It needs configuration (krb5.conf and so on). |
| 14 'use_kerberos%': 0, | 15 'use_kerberos%': 0, |
| 15 }, { # chromeos == 0 | 16 }, { # chromeos == 0 |
| 16 'use_kerberos%': 1, | 17 'use_kerberos%': 1, |
| 17 }], | 18 }], |
| (...skipping 721 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 739 }], | 740 }], |
| 740 ], | 741 ], |
| 741 }, { # use_kerberos == 0 | 742 }, { # use_kerberos == 0 |
| 742 'sources!': [ | 743 'sources!': [ |
| 743 'http/http_auth_gssapi_posix.cc', | 744 'http/http_auth_gssapi_posix.cc', |
| 744 'http/http_auth_gssapi_posix.h', | 745 'http/http_auth_gssapi_posix.h', |
| 745 'http/http_auth_handler_negotiate.h', | 746 'http/http_auth_handler_negotiate.h', |
| 746 'http/http_auth_handler_negotiate.cc', | 747 'http/http_auth_handler_negotiate.cc', |
| 747 ], | 748 ], |
| 748 }], | 749 }], |
| 750 ['use_domain_suffix_trie==1', { |
| 751 'defines': [ |
| 752 'USE_DOMAIN_SUFFIX_TRIE', |
| 753 ], |
| 754 'dependencies': [ |
| 755 'third_party/domain-registry-provider/src/domain_registry/domain_reg
istry.gyp:domain_registry_lib', |
| 756 'third_party/domain-registry-provider/src/domain_registry/domain_reg
istry.gyp:init_registry_tables_lib' |
| 757 ], |
| 758 }], |
| 749 ['use_openssl==1', { | 759 ['use_openssl==1', { |
| 750 'sources!': [ | 760 'sources!': [ |
| 751 'base/cert_database_nss.cc', | 761 'base/cert_database_nss.cc', |
| 752 'base/crypto_module_nss.cc', | 762 'base/crypto_module_nss.cc', |
| 753 'base/dnssec_keyset.cc', | 763 'base/dnssec_keyset.cc', |
| 754 'base/dnssec_keyset.h', | 764 'base/dnssec_keyset.h', |
| 755 'base/keygen_handler_nss.cc', | 765 'base/keygen_handler_nss.cc', |
| 756 'base/nss_memio.c', | 766 'base/nss_memio.c', |
| 757 'base/nss_memio.h', | 767 'base/nss_memio.h', |
| 758 'base/test_root_certs_nss.cc', | 768 'base/test_root_certs_nss.cc', |
| (...skipping 807 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1566 'tools/dump_cache/url_to_filename_encoder.cc', | 1576 'tools/dump_cache/url_to_filename_encoder.cc', |
| 1567 'tools/dump_cache/url_to_filename_encoder.h', | 1577 'tools/dump_cache/url_to_filename_encoder.h', |
| 1568 'tools/dump_cache/url_utilities.h', | 1578 'tools/dump_cache/url_utilities.h', |
| 1569 'tools/dump_cache/url_utilities.cc', | 1579 'tools/dump_cache/url_utilities.cc', |
| 1570 ], | 1580 ], |
| 1571 }, | 1581 }, |
| 1572 ], | 1582 ], |
| 1573 }], | 1583 }], |
| 1574 ], | 1584 ], |
| 1575 } | 1585 } |
| OLD | NEW |