| OLD | NEW |
| 1 # Copyright (c) 2009 The Chromium Authors. All rights reserved. | 1 # Copyright (c) 2009 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 { |
| 11 'target_name': 'base', | 11 'target_name': 'base', |
| 12 'type': '<(library)', | 12 'type': '<(library)', |
| 13 'dependencies': [ | 13 'dependencies': [ |
| 14 '../third_party/icu/icu.gyp:icui18n', | 14 '../third_party/icu/icu.gyp:icui18n', |
| 15 '../third_party/icu/icu.gyp:icuuc', | 15 '../third_party/icu/icu.gyp:icuuc', |
| 16 ], | 16 ], |
| 17 'msvs_guid': '1832A374-8A74-4F9E-B536-69A699B3E165', | 17 'msvs_guid': '1832A374-8A74-4F9E-B536-69A699B3E165', |
| 18 'sources': [ | 18 'sources': [ |
| 19 '../build/build_config.h', | 19 '../build/build_config.h', |
| 20 'crypto/cssm_init.cc', | 20 'crypto/cssm_init.cc', |
| 21 'crypto/cssm_init.h', | 21 'crypto/cssm_init.h', |
| 22 'crypto/rsa_private_key.h', | 22 'crypto/rsa_private_key.h', |
| 23 'crypto/rsa_private_key.cc', |
| 23 'crypto/rsa_private_key_mac.cc', | 24 'crypto/rsa_private_key_mac.cc', |
| 24 'crypto/rsa_private_key_nss.cc', | 25 'crypto/rsa_private_key_nss.cc', |
| 25 'crypto/rsa_private_key_win.cc', | 26 'crypto/rsa_private_key_win.cc', |
| 26 'crypto/signature_creator.h', | 27 'crypto/signature_creator.h', |
| 27 'crypto/signature_creator_mac.cc', | 28 'crypto/signature_creator_mac.cc', |
| 28 'crypto/signature_creator_nss.cc', | 29 'crypto/signature_creator_nss.cc', |
| 29 'crypto/signature_creator_win.cc', | 30 'crypto/signature_creator_win.cc', |
| 30 'crypto/signature_verifier.h', | 31 'crypto/signature_verifier.h', |
| 31 'crypto/signature_verifier_mac.cc', | 32 'crypto/signature_verifier_mac.cc', |
| 32 'crypto/signature_verifier_nss.cc', | 33 'crypto/signature_verifier_nss.cc', |
| (...skipping 818 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 851 ], | 852 ], |
| 852 }], | 853 }], |
| 853 ], | 854 ], |
| 854 } | 855 } |
| 855 | 856 |
| 856 # Local Variables: | 857 # Local Variables: |
| 857 # tab-width:2 | 858 # tab-width:2 |
| 858 # indent-tabs-mode:nil | 859 # indent-tabs-mode:nil |
| 859 # End: | 860 # End: |
| 860 # vim: set expandtab tabstop=2 shiftwidth=2: | 861 # vim: set expandtab tabstop=2 shiftwidth=2: |
| OLD | NEW |