Chromium Code Reviews| 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 'targets': [ | 9 'targets': [ |
| 10 { | 10 { |
| (...skipping 737 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
| 748 ['use_openssl==1', { | 748 ['use_openssl==1', { |
| 749 'dependencies': [ | 749 'dependencies': [ |
| 750 '../third_party/openssl/openssl.gyp:openssl', | 750 '../third_party/openssl/openssl.gyp:openssl', |
| 751 ], | 751 ], |
| 752 }, | 752 }, |
| 753 { # else use_openssl==0, use NSS | 753 { # else use_openssl==0, use NSS |
| 754 'dependencies': [ | 754 'dependencies': [ |
| 755 '../build/linux/system.gyp:ssl', | 755 '../build/linux/system.gyp:ssl', |
| 756 ], | 756 ], |
| 757 }], | 757 }], |
| 758 ['OS=="solaris"', { | |
| 759 'link_settings': { | |
| 760 'libraries': [ | |
|
Evan Martin
2011/06/24 17:51:18
ldflags, I think?
(it ends up in the same command
| |
| 761 '-R/usr/lib/mps', | |
| 762 ], | |
| 763 }, | |
| 764 }], | |
| 758 ], | 765 ], |
| 759 }, | 766 }, |
| 760 { # else: OS is not in the above list | 767 { # else: OS is not in the above list |
| 761 'sources!': [ | 768 'sources!': [ |
| 762 'base/cert_database_nss.cc', | 769 'base/cert_database_nss.cc', |
| 763 'base/crypto_module_nss.cc', | 770 'base/crypto_module_nss.cc', |
| 764 'base/keygen_handler_nss.cc', | 771 'base/keygen_handler_nss.cc', |
| 765 'base/test_root_certs_nss.cc', | 772 'base/test_root_certs_nss.cc', |
| 766 'base/x509_certificate_nss.cc', | 773 'base/x509_certificate_nss.cc', |
| 767 'ocsp/nss_ocsp.cc', | 774 'ocsp/nss_ocsp.cc', |
| (...skipping 674 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
| 1442 ], | 1449 ], |
| 1443 }], | 1450 }], |
| 1444 ], | 1451 ], |
| 1445 } | 1452 } |
| 1446 | 1453 |
| 1447 # Local Variables: | 1454 # Local Variables: |
| 1448 # tab-width:2 | 1455 # tab-width:2 |
| 1449 # indent-tabs-mode:nil | 1456 # indent-tabs-mode:nil |
| 1450 # End: | 1457 # End: |
| 1451 # vim: set expandtab tabstop=2 shiftwidth=2: | 1458 # vim: set expandtab tabstop=2 shiftwidth=2: |
| OLD | NEW |