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

Side by Side Diff: base/base.gyp

Issue 118277: Introduce SignatureCreator. (Closed)
Patch Set: Responses to feedback Created 11 years, 6 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 'includes': [ 9 'includes': [
10 '../build/common.gypi', 10 '../build/common.gypi',
11 ], 11 ],
12 'targets': [ 12 'targets': [
13 { 13 {
14 'target_name': 'base', 14 'target_name': 'base',
15 'type': '<(library)', 15 'type': '<(library)',
16 'dependencies': [ 16 'dependencies': [
17 '../third_party/icu38/icu38.gyp:icui18n', 17 '../third_party/icu38/icu38.gyp:icui18n',
18 '../third_party/icu38/icu38.gyp:icuuc', 18 '../third_party/icu38/icu38.gyp:icuuc',
19 ], 19 ],
20 'msvs_guid': '1832A374-8A74-4F9E-B536-69A699B3E165', 20 'msvs_guid': '1832A374-8A74-4F9E-B536-69A699B3E165',
21 'sources': [ 21 'sources': [
22 '../build/build_config.h', 22 '../build/build_config.h',
23 'crypto/cssm_init.cc', 23 'crypto/cssm_init.cc',
24 'crypto/cssm_init.h', 24 'crypto/cssm_init.h',
25 'crypto/rsa_private_key.h',
26 'crypto/rsa_private_key_win.cc',
27 'crypto/signature_creator.h',
28 'crypto/signature_creator_win.cc',
25 'crypto/signature_verifier.h', 29 'crypto/signature_verifier.h',
26 'crypto/signature_verifier_mac.cc', 30 'crypto/signature_verifier_mac.cc',
27 'crypto/signature_verifier_nss.cc', 31 'crypto/signature_verifier_nss.cc',
28 'crypto/signature_verifier_win.cc', 32 'crypto/signature_verifier_win.cc',
29 'third_party/dmg_fp/dmg_fp.h', 33 'third_party/dmg_fp/dmg_fp.h',
30 'third_party/dmg_fp/dtoa.cc', 34 'third_party/dmg_fp/dtoa.cc',
31 'third_party/dmg_fp/g_fmt.cc', 35 'third_party/dmg_fp/g_fmt.cc',
32 'third_party/nspr/prcpucfg.h', 36 'third_party/nspr/prcpucfg.h',
33 'third_party/nspr/prcpucfg_win.h', 37 'third_party/nspr/prcpucfg_win.h',
34 'third_party/nspr/prtime.cc', 38 'third_party/nspr/prtime.cc',
(...skipping 549 matching lines...) Expand 10 before | Expand all | Expand 10 after
584 { 588 {
585 'target_name': 'base_unittests', 589 'target_name': 'base_unittests',
586 'type': 'executable', 590 'type': 'executable',
587 'msvs_guid': '27A30967-4BBA-48D1-8522-CDE95F7B1CEC', 591 'msvs_guid': '27A30967-4BBA-48D1-8522-CDE95F7B1CEC',
588 'sources': [ 592 'sources': [
589 'at_exit_unittest.cc', 593 'at_exit_unittest.cc',
590 'atomicops_unittest.cc', 594 'atomicops_unittest.cc',
591 'clipboard_unittest.cc', 595 'clipboard_unittest.cc',
592 'command_line_unittest.cc', 596 'command_line_unittest.cc',
593 'condition_variable_unittest.cc', 597 'condition_variable_unittest.cc',
598 'crypto/rsa_private_key_unittest.cc',
599 'crypto/signature_creator_unittest.cc',
594 'crypto/signature_verifier_unittest.cc', 600 'crypto/signature_verifier_unittest.cc',
595 'data_pack_unittest.cc', 601 'data_pack_unittest.cc',
596 'debug_util_unittest.cc', 602 'debug_util_unittest.cc',
597 'directory_watcher_unittest.cc', 603 'directory_watcher_unittest.cc',
598 'field_trial_unittest.cc', 604 'field_trial_unittest.cc',
599 'file_descriptor_shuffle_unittest.cc', 605 'file_descriptor_shuffle_unittest.cc',
600 'file_path_unittest.cc', 606 'file_path_unittest.cc',
601 'file_util_unittest.cc', 607 'file_util_unittest.cc',
602 'file_version_info_unittest.cc', 608 'file_version_info_unittest.cc',
603 'gfx/jpeg_codec_unittest.cc', 609 'gfx/jpeg_codec_unittest.cc',
(...skipping 93 matching lines...) Expand 10 before | Expand all | Expand 10 after
697 ['OS == "win"', { 703 ['OS == "win"', {
698 'dependencies': [ 704 'dependencies': [
699 '../third_party/icu38/icu38.gyp:icudata', 705 '../third_party/icu38/icu38.gyp:icudata',
700 ], 706 ],
701 'sources!': [ 707 'sources!': [
702 'data_pack_unittest.cc', 708 'data_pack_unittest.cc',
703 'file_descriptor_shuffle_unittest.cc', 709 'file_descriptor_shuffle_unittest.cc',
704 ], 710 ],
705 }, { # OS != "win" 711 }, { # OS != "win"
706 'sources!': [ 712 'sources!': [
713 'crypto/rsa_private_key_unittest.cc',
714 'crypto/signature_creator_unittest.cc',
707 'gfx/native_theme_unittest.cc', 715 'gfx/native_theme_unittest.cc',
708 'object_watcher_unittest.cc', 716 'object_watcher_unittest.cc',
709 'pe_image_unittest.cc', 717 'pe_image_unittest.cc',
710 'scoped_bstr_win_unittest.cc', 718 'scoped_bstr_win_unittest.cc',
711 'scoped_comptr_win_unittest.cc', 719 'scoped_comptr_win_unittest.cc',
712 'scoped_variant_win_unittest.cc', 720 'scoped_variant_win_unittest.cc',
713 'system_monitor_unittest.cc', 721 'system_monitor_unittest.cc',
714 'time_win_unittest.cc', 722 'time_win_unittest.cc',
715 'win_util_unittest.cc', 723 'win_util_unittest.cc',
716 'wmi_util_unittest.cc', 724 'wmi_util_unittest.cc',
(...skipping 42 matching lines...) Expand 10 before | Expand all | Expand 10 after
759 'msvs_settings': { 767 'msvs_settings': {
760 'VCLinkerTool': { 768 'VCLinkerTool': {
761 'SubSystem': '2', # Set /SUBSYSTEM:WINDOWS 769 'SubSystem': '2', # Set /SUBSYSTEM:WINDOWS
762 }, 770 },
763 }, 771 },
764 }, 772 },
765 ], 773 ],
766 }], 774 }],
767 ], 775 ],
768 } 776 }
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