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_mac.cc', | 23 'crypto/rsa_private_key_mac.cc', |
24 'crypto/rsa_private_key_nss.cc', | 24 'crypto/rsa_private_key_nss.cc', |
25 'crypto/rsa_private_key_win.cc', | 25 'crypto/rsa_private_key_win.cc', |
26 'crypto/signature_creator.h', | 26 'crypto/signature_creator.h', |
| 27 'crypto/signature_creator_mac.cc', |
27 'crypto/signature_creator_nss.cc', | 28 'crypto/signature_creator_nss.cc', |
28 'crypto/signature_creator_win.cc', | 29 'crypto/signature_creator_win.cc', |
29 'crypto/signature_verifier.h', | 30 'crypto/signature_verifier.h', |
30 'crypto/signature_verifier_mac.cc', | 31 'crypto/signature_verifier_mac.cc', |
31 'crypto/signature_verifier_nss.cc', | 32 'crypto/signature_verifier_nss.cc', |
32 'crypto/signature_verifier_win.cc', | 33 'crypto/signature_verifier_win.cc', |
33 'third_party/dmg_fp/dmg_fp.h', | 34 'third_party/dmg_fp/dmg_fp.h', |
34 'third_party/dmg_fp/dtoa.cc', | 35 'third_party/dmg_fp/dtoa.cc', |
35 'third_party/dmg_fp/g_fmt.cc', | 36 'third_party/dmg_fp/g_fmt.cc', |
36 'third_party/nspr/prcpucfg.h', | 37 'third_party/nspr/prcpucfg.h', |
(...skipping 633 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
670 'dependencies': [ | 671 'dependencies': [ |
671 '../build/linux/system.gyp:gtk', | 672 '../build/linux/system.gyp:gtk', |
672 '../build/linux/system.gyp:nss', | 673 '../build/linux/system.gyp:nss', |
673 '../tools/xdisplaycheck/xdisplaycheck.gyp:xdisplaycheck', | 674 '../tools/xdisplaycheck/xdisplaycheck.gyp:xdisplaycheck', |
674 ], | 675 ], |
675 }, { # OS != "linux" and OS != "freebsd" | 676 }, { # OS != "linux" and OS != "freebsd" |
676 'sources!': [ | 677 'sources!': [ |
677 'message_pump_glib_unittest.cc', | 678 'message_pump_glib_unittest.cc', |
678 ] | 679 ] |
679 }], | 680 }], |
680 ['OS == "mac"', { | 681 ['OS != "mac"', { |
681 'sources!': [ | |
682 'crypto/signature_creator_unittest.cc', | |
683 ], | |
684 }, { # OS != "mac" | |
685 'sources!': [ | 682 'sources!': [ |
686 'mac_util_unittest.cc', | 683 'mac_util_unittest.cc', |
687 ], | 684 ], |
688 }], | 685 }], |
689 # This is needed to trigger the dll copy step on windows. | 686 # This is needed to trigger the dll copy step on windows. |
690 # TODO(mark): This should not be necessary. | 687 # TODO(mark): This should not be necessary. |
691 ['OS == "win"', { | 688 ['OS == "win"', { |
692 'dependencies': [ | 689 'dependencies': [ |
693 '../third_party/icu/icu.gyp:icudata', | 690 '../third_party/icu/icu.gyp:icudata', |
694 ], | 691 ], |
(...skipping 153 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
848 '<@(_outputs)', | 845 '<@(_outputs)', |
849 ], | 846 ], |
850 'message': 'Generating version information', | 847 'message': 'Generating version information', |
851 }, | 848 }, |
852 ], | 849 ], |
853 }, | 850 }, |
854 ], | 851 ], |
855 }], | 852 }], |
856 ], | 853 ], |
857 } | 854 } |
OLD | NEW |