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

Side by Side Diff: base/base.gyp

Issue 399068: Move base64 from 'net/base' into 'base'. (Closed)
Patch Set: rebase Created 11 years, 1 month 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 | « base/DEPS ('k') | base/base64.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 'msvs_guid': '1832A374-8A74-4F9E-B536-69A699B3E165', 13 'msvs_guid': '1832A374-8A74-4F9E-B536-69A699B3E165',
14 'dependencies': [
15 '../third_party/modp_b64/modp_b64.gyp:modp_b64',
16 ],
14 'sources': [ 17 'sources': [
15 '../build/build_config.h', 18 '../build/build_config.h',
16 'crypto/cssm_init.cc', 19 'crypto/cssm_init.cc',
17 'crypto/cssm_init.h', 20 'crypto/cssm_init.h',
18 'crypto/rsa_private_key.h', 21 'crypto/rsa_private_key.h',
19 'crypto/rsa_private_key.cc', 22 'crypto/rsa_private_key.cc',
20 'crypto/rsa_private_key_mac.cc', 23 'crypto/rsa_private_key_mac.cc',
21 'crypto/rsa_private_key_nss.cc', 24 'crypto/rsa_private_key_nss.cc',
22 'crypto/rsa_private_key_win.cc', 25 'crypto/rsa_private_key_win.cc',
23 'crypto/signature_creator.h', 26 'crypto/signature_creator.h',
(...skipping 39 matching lines...) Expand 10 before | Expand all | Expand 10 after
63 'atomicops_internals_x86_gcc.cc', 66 'atomicops_internals_x86_gcc.cc',
64 'at_exit.cc', 67 'at_exit.cc',
65 'at_exit.h', 68 'at_exit.h',
66 'atomic_flag.h', 69 'atomic_flag.h',
67 'atomic_flag.cc', 70 'atomic_flag.cc',
68 'atomic_ref_count.h', 71 'atomic_ref_count.h',
69 'atomic_sequence_num.h', 72 'atomic_sequence_num.h',
70 'atomicops.h', 73 'atomicops.h',
71 'atomicops_internals_x86_msvc.h', 74 'atomicops_internals_x86_msvc.h',
72 'auto_reset.h', 75 'auto_reset.h',
76 'base64.cc',
77 'base64.h',
73 'base_drag_source.cc', 78 'base_drag_source.cc',
74 'base_drag_source.h', 79 'base_drag_source.h',
75 'base_drop_target.cc', 80 'base_drop_target.cc',
76 'base_drop_target.h', 81 'base_drop_target.h',
77 'base_paths.cc', 82 'base_paths.cc',
78 'base_paths.h', 83 'base_paths.h',
79 'base_paths_mac.h', 84 'base_paths_mac.h',
80 'base_paths_mac.mm', 85 'base_paths_mac.mm',
81 'base_paths_posix.cc', 86 'base_paths_posix.cc',
82 'base_paths_win.cc', 87 'base_paths_win.cc',
(...skipping 515 matching lines...) Expand 10 before | Expand all | Expand 10 after
598 'sources': [ 603 'sources': [
599 # Infrastructure files. 604 # Infrastructure files.
600 'multiprocess_test.h', 605 'multiprocess_test.h',
601 'test/run_all_unittests.cc', 606 'test/run_all_unittests.cc',
602 'test/test_suite.h', 607 'test/test_suite.h',
603 608
604 # Tests. 609 # Tests.
605 'at_exit_unittest.cc', 610 'at_exit_unittest.cc',
606 'atomic_flag_unittest.cc', 611 'atomic_flag_unittest.cc',
607 'atomicops_unittest.cc', 612 'atomicops_unittest.cc',
613 'base64_unittest.cc',
608 'bits_unittest.cc', 614 'bits_unittest.cc',
609 'command_line_unittest.cc', 615 'command_line_unittest.cc',
610 'condition_variable_unittest.cc', 616 'condition_variable_unittest.cc',
611 'crypto/rsa_private_key_unittest.cc', 617 'crypto/rsa_private_key_unittest.cc',
612 'crypto/signature_creator_unittest.cc', 618 'crypto/signature_creator_unittest.cc',
613 'crypto/signature_verifier_unittest.cc', 619 'crypto/signature_verifier_unittest.cc',
614 'data_pack_unittest.cc', 620 'data_pack_unittest.cc',
615 'debug_util_unittest.cc', 621 'debug_util_unittest.cc',
616 'directory_watcher_unittest.cc', 622 'directory_watcher_unittest.cc',
617 'field_trial_unittest.cc', 623 'field_trial_unittest.cc',
(...skipping 264 matching lines...) Expand 10 before | Expand all | Expand 10 after
882 ], 888 ],
883 }], 889 }],
884 ], 890 ],
885 } 891 }
886 892
887 # Local Variables: 893 # Local Variables:
888 # tab-width:2 894 # tab-width:2
889 # indent-tabs-mode:nil 895 # indent-tabs-mode:nil
890 # End: 896 # End:
891 # vim: set expandtab tabstop=2 shiftwidth=2: 897 # vim: set expandtab tabstop=2 shiftwidth=2:
OLDNEW
« no previous file with comments | « base/DEPS ('k') | base/base64.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698