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

Side by Side Diff: courgette/courgette.gyp

Issue 8477045: Add Elf 32 Support to Courgette. (Closed) Base URL: http://git.chromium.org/git/chromium.git@trunk
Patch Set: Remove debug printf present by mistake. Created 9 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 | Annotate | Revision Log
« no previous file with comments | « courgette/courgette.h ('k') | courgette/disassembler.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) 2011 The Chromium Authors. All rights reserved. 1 # Copyright (c) 2011 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 'courgette_lib_sources': [ 8 'courgette_lib_sources': [
9 'adjustment_method.cc', 9 'adjustment_method.cc',
10 'adjustment_method_2.cc', 10 'adjustment_method_2.cc',
11 'adjustment_method.h', 11 'adjustment_method.h',
12 'assembly_program.cc', 12 'assembly_program.cc',
13 'assembly_program.h', 13 'assembly_program.h',
14 'third_party/bsdiff.h', 14 'third_party/bsdiff.h',
15 'third_party/bsdiff_apply.cc', 15 'third_party/bsdiff_apply.cc',
16 'third_party/bsdiff_create.cc', 16 'third_party/bsdiff_create.cc',
17 'third_party/paged_array.h', 17 'third_party/paged_array.h',
18 'courgette.h', 18 'courgette.h',
19 'crc.cc', 19 'crc.cc',
20 'crc.h', 20 'crc.h',
21 'difference_estimator.cc', 21 'difference_estimator.cc',
22 'difference_estimator.h', 22 'difference_estimator.h',
23 'disassembler.cc', 23 'disassembler.cc',
24 'disassembler.h', 24 'disassembler.h',
25 'disassembler_elf_32_x86.cc',
26 'disassembler_elf_32_x86.h',
25 'disassembler_win32_x86.cc', 27 'disassembler_win32_x86.cc',
26 'disassembler_win32_x86.h', 28 'disassembler_win32_x86.h',
27 'encoded_program.cc', 29 'encoded_program.cc',
28 'encoded_program.h', 30 'encoded_program.h',
29 'ensemble.cc', 31 'ensemble.cc',
30 'ensemble.h', 32 'ensemble.h',
31 'ensemble_apply.cc', 33 'ensemble_apply.cc',
32 'ensemble_create.cc', 34 'ensemble_create.cc',
33 'memory_allocator.cc', 35 'memory_allocator.cc',
34 'memory_allocator.h', 36 'memory_allocator.h',
35 'region.h', 37 'region.h',
36 'simple_delta.cc', 38 'simple_delta.cc',
37 'simple_delta.h', 39 'simple_delta.h',
38 'streams.cc', 40 'streams.cc',
39 'streams.h', 41 'streams.h',
42 'types_elf.h',
43 'types_win_pe.h',
40 'patch_generator_x86_32.h', 44 'patch_generator_x86_32.h',
41 'patcher_x86_32.h', 45 'patcher_x86_32.h',
42 ], 46 ],
43 }, 47 },
44 'targets': [ 48 'targets': [
45 { 49 {
46 'target_name': 'courgette_lib', 50 'target_name': 'courgette_lib',
47 'type': 'static_library', 51 'type': 'static_library',
48 'dependencies': [ 52 'dependencies': [
49 '../base/base.gyp:base', 53 '../base/base.gyp:base',
(...skipping 32 matching lines...) Expand 10 before | Expand all | Expand 10 after
82 }, 86 },
83 { 87 {
84 'target_name': 'courgette_unittests', 88 'target_name': 'courgette_unittests',
85 'type': 'executable', 89 'type': 'executable',
86 'sources': [ 90 'sources': [
87 'adjustment_method_unittest.cc', 91 'adjustment_method_unittest.cc',
88 'bsdiff_memory_unittest.cc', 92 'bsdiff_memory_unittest.cc',
89 'base_test_unittest.cc', 93 'base_test_unittest.cc',
90 'base_test_unittest.h', 94 'base_test_unittest.h',
91 'difference_estimator_unittest.cc', 95 'difference_estimator_unittest.cc',
96 'disassembler_elf_32_x86_unittest.cc',
92 'disassembler_win32_x86_unittest.cc', 97 'disassembler_win32_x86_unittest.cc',
93 'encoded_program_unittest.cc', 98 'encoded_program_unittest.cc',
94 'encode_decode_unittest.cc', 99 'encode_decode_unittest.cc',
95 'ensemble_unittest.cc', 100 'ensemble_unittest.cc',
96 'run_all_unittests.cc', 101 'run_all_unittests.cc',
97 'streams_unittest.cc', 102 'streams_unittest.cc',
98 'versioning_unittest.cc', 103 'versioning_unittest.cc',
99 'third_party/paged_array_unittest.cc' 104 'third_party/paged_array_unittest.cc'
100 ], 105 ],
101 'dependencies': [ 106 'dependencies': [
(...skipping 75 matching lines...) Expand 10 before | Expand all | Expand 10 after
177 'configurations': { 182 'configurations': {
178 'Common_Base': { 183 'Common_Base': {
179 'msvs_target_platform': 'x64', 184 'msvs_target_platform': 'x64',
180 }, 185 },
181 }, 186 },
182 }, 187 },
183 ], 188 ],
184 }], 189 }],
185 ], 190 ],
186 } 191 }
OLDNEW
« no previous file with comments | « courgette/courgette.h ('k') | courgette/disassembler.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698