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

Side by Side Diff: courgette/courgette.gyp

Issue 1272453003: [Courgette] Extract qsufsort module and add tests. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Using int, but with explicit cast from ::strlen(). Created 5 years, 4 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 | « courgette/BUILD.gn ('k') | courgette/third_party/README.chromium » ('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',
15 'third_party/bsdiff_apply.cc',
16 'third_party/bsdiff_create.cc',
17 'third_party/paged_array.h',
18 'courgette.h', 14 'courgette.h',
19 'crc.cc', 15 'crc.cc',
20 'crc.h', 16 'crc.h',
21 'difference_estimator.cc', 17 'difference_estimator.cc',
22 'difference_estimator.h', 18 'difference_estimator.h',
23 'disassembler.cc', 19 'disassembler.cc',
24 'disassembler.h', 20 'disassembler.h',
25 'disassembler_elf_32.cc', 21 'disassembler_elf_32.cc',
26 'disassembler_elf_32.h', 22 'disassembler_elf_32.h',
27 'disassembler_elf_32_arm.cc', 23 'disassembler_elf_32_arm.cc',
(...skipping 10 matching lines...) Expand all
38 'ensemble.h', 34 'ensemble.h',
39 'ensemble_apply.cc', 35 'ensemble_apply.cc',
40 'ensemble_create.cc', 36 'ensemble_create.cc',
41 'memory_allocator.cc', 37 'memory_allocator.cc',
42 'memory_allocator.h', 38 'memory_allocator.h',
43 'region.h', 39 'region.h',
44 'simple_delta.cc', 40 'simple_delta.cc',
45 'simple_delta.h', 41 'simple_delta.h',
46 'streams.cc', 42 'streams.cc',
47 'streams.h', 43 'streams.h',
44 'third_party/bsdiff.h',
45 'third_party/bsdiff_apply.cc',
46 'third_party/bsdiff_create.cc',
47 'third_party/paged_array.h',
48 'third_party/qsufsort.h',
48 'types_elf.h', 49 'types_elf.h',
49 'types_win_pe.h', 50 'types_win_pe.h',
50 'patch_generator_x86_32.h', 51 'patch_generator_x86_32.h',
51 'patcher_x86_32.h', 52 'patcher_x86_32.h',
52 ], 53 ],
53 }, 54 },
54 'targets': [ 55 'targets': [
55 { 56 {
56 'target_name': 'courgette_lib', 57 'target_name': 'courgette_lib',
57 'type': 'static_library', 58 'type': 'static_library',
(...skipping 44 matching lines...) Expand 10 before | Expand all | Expand 10 after
102 'disassembler_elf_32_x86_unittest.cc', 103 'disassembler_elf_32_x86_unittest.cc',
103 'disassembler_win32_x86_unittest.cc', 104 'disassembler_win32_x86_unittest.cc',
104 'disassembler_win32_x64_unittest.cc', 105 'disassembler_win32_x64_unittest.cc',
105 'encoded_program_unittest.cc', 106 'encoded_program_unittest.cc',
106 'encode_decode_unittest.cc', 107 'encode_decode_unittest.cc',
107 'ensemble_unittest.cc', 108 'ensemble_unittest.cc',
108 'memory_allocator_unittest.cc', 109 'memory_allocator_unittest.cc',
109 'streams_unittest.cc', 110 'streams_unittest.cc',
110 'typedrva_unittest.cc', 111 'typedrva_unittest.cc',
111 'versioning_unittest.cc', 112 'versioning_unittest.cc',
112 'third_party/paged_array_unittest.cc' 113 'third_party/paged_array_unittest.cc',
114 'third_party/qsufsort_unittest.cc',
113 ], 115 ],
114 'dependencies': [ 116 'dependencies': [
115 'courgette_lib', 117 'courgette_lib',
116 '../base/base.gyp:base', 118 '../base/base.gyp:base',
117 '../base/base.gyp:base_i18n', 119 '../base/base.gyp:base_i18n',
118 '../base/base.gyp:run_all_unittests', 120 '../base/base.gyp:run_all_unittests',
119 '../base/base.gyp:test_support_base', 121 '../base/base.gyp:test_support_base',
120 '../testing/gtest.gyp:gtest', 122 '../testing/gtest.gyp:gtest',
121 ], 123 ],
122 'conditions': [ 124 'conditions': [
(...skipping 103 matching lines...) Expand 10 before | Expand all | Expand 10 after
226 '../build/isolate.gypi', 228 '../build/isolate.gypi',
227 ], 229 ],
228 'sources': [ 230 'sources': [
229 'courgette_unittests.isolate', 231 'courgette_unittests.isolate',
230 ], 232 ],
231 }, 233 },
232 ], 234 ],
233 }], 235 }],
234 ], 236 ],
235 } 237 }
OLDNEW
« no previous file with comments | « courgette/BUILD.gn ('k') | courgette/third_party/README.chromium » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698