Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(561)

Side by Side Diff: base/base.gyp

Issue 208032: Linux (nss) implementations of RSAPrivateKey and SignatureCreator (Closed)
Patch Set: last cr changes. Created 11 years, 3 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
« no previous file with comments | « no previous file | base/crypto/rsa_private_key.h » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
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_nss.cc',
23 'crypto/rsa_private_key_win.cc', 24 'crypto/rsa_private_key_win.cc',
24 'crypto/signature_creator.h', 25 'crypto/signature_creator.h',
26 'crypto/signature_creator_nss.cc',
25 'crypto/signature_creator_win.cc', 27 'crypto/signature_creator_win.cc',
26 'crypto/signature_verifier.h', 28 'crypto/signature_verifier.h',
27 'crypto/signature_verifier_mac.cc', 29 'crypto/signature_verifier_mac.cc',
28 'crypto/signature_verifier_nss.cc', 30 'crypto/signature_verifier_nss.cc',
29 'crypto/signature_verifier_win.cc', 31 'crypto/signature_verifier_win.cc',
30 'third_party/dmg_fp/dmg_fp.h', 32 'third_party/dmg_fp/dmg_fp.h',
31 'third_party/dmg_fp/dtoa.cc', 33 'third_party/dmg_fp/dtoa.cc',
32 'third_party/dmg_fp/g_fmt.cc', 34 'third_party/dmg_fp/g_fmt.cc',
33 'third_party/nspr/prcpucfg.h', 35 'third_party/nspr/prcpucfg.h',
34 'third_party/nspr/prcpucfg_win.h', 36 'third_party/nspr/prcpucfg_win.h',
(...skipping 371 matching lines...) Expand 10 before | Expand all | Expand 10 after
406 }, 408 },
407 'export_dependent_settings': [ 409 'export_dependent_settings': [
408 '../build/linux/system.gyp:gtk', 410 '../build/linux/system.gyp:gtk',
409 ], 411 ],
410 }, 412 },
411 { # else: OS != "linux" && OS != "freebsd" 413 { # else: OS != "linux" && OS != "freebsd"
412 'sources/': [ 414 'sources/': [
413 ['exclude', '/xdg_mime/'], 415 ['exclude', '/xdg_mime/'],
414 ], 416 ],
415 'sources!': [ 417 'sources!': [
418 'crypto/rsa_private_key_nss.cc',
419 'crypto/signature_creator_nss.cc',
416 'crypto/signature_verifier_nss.cc', 420 'crypto/signature_verifier_nss.cc',
417 'atomicops_internals_x86_gcc.cc', 421 'atomicops_internals_x86_gcc.cc',
418 'directory_watcher_inotify.cc', 422 'directory_watcher_inotify.cc',
419 'hmac_nss.cc', 423 'hmac_nss.cc',
420 'idle_timer_none.cc', 424 'idle_timer_none.cc',
421 'linux_util.cc', 425 'linux_util.cc',
422 'message_pump_glib.cc', 426 'message_pump_glib.cc',
423 'nss_init.cc', 427 'nss_init.cc',
424 'nss_init.h', 428 'nss_init.h',
425 'time_posix.cc', 429 'time_posix.cc',
(...skipping 270 matching lines...) Expand 10 before | Expand all | Expand 10 after
696 'dependencies': [ 700 'dependencies': [
697 '../build/linux/system.gyp:gtk', 701 '../build/linux/system.gyp:gtk',
698 '../build/linux/system.gyp:nss', 702 '../build/linux/system.gyp:nss',
699 '../tools/xdisplaycheck/xdisplaycheck.gyp:xdisplaycheck', 703 '../tools/xdisplaycheck/xdisplaycheck.gyp:xdisplaycheck',
700 ], 704 ],
701 }, { # OS != "linux" and OS != "freebsd" 705 }, { # OS != "linux" and OS != "freebsd"
702 'sources!': [ 706 'sources!': [
703 'message_pump_glib_unittest.cc', 707 'message_pump_glib_unittest.cc',
704 ] 708 ]
705 }], 709 }],
706 ['OS != "mac"', { 710 ['OS == "mac"', {
711 'sources!': [
712 'crypto/rsa_private_key_unittest.cc',
713 'crypto/signature_creator_unittest.cc',
714 ],
715 }, { # OS != "mac"
707 'sources!': [ 716 'sources!': [
708 'mac_util_unittest.cc', 717 'mac_util_unittest.cc',
709 ], 718 ],
710 }], 719 }],
711 # This is needed to trigger the dll copy step on windows. 720 # This is needed to trigger the dll copy step on windows.
712 # TODO(mark): This should not be necessary. 721 # TODO(mark): This should not be necessary.
713 ['OS == "win"', { 722 ['OS == "win"', {
714 'dependencies': [ 723 'dependencies': [
715 '../third_party/icu/icu.gyp:icudata', 724 '../third_party/icu/icu.gyp:icudata',
716 ], 725 ],
717 'sources!': [ 726 'sources!': [
718 'data_pack_unittest.cc', 727 'data_pack_unittest.cc',
719 'file_descriptor_shuffle_unittest.cc', 728 'file_descriptor_shuffle_unittest.cc',
720 ], 729 ],
721 }, { # OS != "win" 730 }, { # OS != "win"
722 'sources!': [ 731 'sources!': [
723 'crypto/rsa_private_key_unittest.cc',
724 'crypto/signature_creator_unittest.cc',
725 'gfx/native_theme_unittest.cc', 732 'gfx/native_theme_unittest.cc',
726 'object_watcher_unittest.cc', 733 'object_watcher_unittest.cc',
727 'pe_image_unittest.cc', 734 'pe_image_unittest.cc',
728 'scoped_bstr_win_unittest.cc', 735 'scoped_bstr_win_unittest.cc',
729 'scoped_comptr_win_unittest.cc', 736 'scoped_comptr_win_unittest.cc',
730 'scoped_variant_win_unittest.cc', 737 'scoped_variant_win_unittest.cc',
731 'system_monitor_unittest.cc', 738 'system_monitor_unittest.cc',
732 'time_win_unittest.cc', 739 'time_win_unittest.cc',
733 'win_util_unittest.cc', 740 'win_util_unittest.cc',
734 'wmi_util_unittest.cc', 741 'wmi_util_unittest.cc',
(...skipping 137 matching lines...) Expand 10 before | Expand all | Expand 10 after
872 '<@(_outputs)', 879 '<@(_outputs)',
873 ], 880 ],
874 'message': 'Generating version information', 881 'message': 'Generating version information',
875 }, 882 },
876 ], 883 ],
877 }, 884 },
878 ], 885 ],
879 }], 886 }],
880 ], 887 ],
881 } 888 }
OLDNEW
« no previous file with comments | « no previous file | base/crypto/rsa_private_key.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698