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

Side by Side Diff: courgette/courgette.gyp

Issue 2078743002: [Courgette] Make BSDiff search() use lexicographical_compare(). (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Sync. Created 4 years, 5 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/bsdiff/bsdiff_create.cc » ('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',
(...skipping 24 matching lines...) Expand all
35 'encoded_program.h', 35 'encoded_program.h',
36 'ensemble.cc', 36 'ensemble.cc',
37 'ensemble.h', 37 'ensemble.h',
38 'ensemble_apply.cc', 38 'ensemble_apply.cc',
39 'ensemble_create.cc', 39 'ensemble_create.cc',
40 'image_utils.h', 40 'image_utils.h',
41 'label_manager.cc', 41 'label_manager.cc',
42 'label_manager.h', 42 'label_manager.h',
43 'memory_allocator.cc', 43 'memory_allocator.cc',
44 'memory_allocator.h', 44 'memory_allocator.h',
45 'patch_generator_x86_32.h',
46 'patcher_x86_32.h',
45 'program_detector.cc', 47 'program_detector.cc',
46 'program_detector.h', 48 'program_detector.h',
47 'region.h', 49 'region.h',
48 'rel32_finder.cc', 50 'rel32_finder.cc',
49 'rel32_finder.h', 51 'rel32_finder.h',
50 'rel32_finder_x64.cc', 52 'rel32_finder_x64.cc',
51 'rel32_finder_x64.h', 53 'rel32_finder_x64.h',
52 'rel32_finder_x86.cc', 54 'rel32_finder_x86.cc',
53 'rel32_finder_x86.h', 55 'rel32_finder_x86.h',
54 'simple_delta.cc', 56 'simple_delta.cc',
55 'simple_delta.h', 57 'simple_delta.h',
56 'streams.cc', 58 'streams.cc',
57 'streams.h', 59 'streams.h',
58 'third_party/bsdiff/bsdiff.h', 60 'third_party/bsdiff/bsdiff.h',
59 'third_party/bsdiff/bsdiff_apply.cc', 61 'third_party/bsdiff/bsdiff_apply.cc',
60 'third_party/bsdiff/bsdiff_create.cc', 62 'third_party/bsdiff/bsdiff_create.cc',
63 'third_party/bsdiff/bsdiff_search.h',
61 'third_party/bsdiff/paged_array.h', 64 'third_party/bsdiff/paged_array.h',
62 'third_party/bsdiff/qsufsort.h', 65 'third_party/bsdiff/qsufsort.h',
63 'types_elf.h', 66 'types_elf.h',
64 'types_win_pe.h', 67 'types_win_pe.h',
65 'patch_generator_x86_32.h',
66 'patcher_x86_32.h',
67 ], 68 ],
68 }, 69 },
69 'targets': [ 70 'targets': [
70 { 71 {
71 'target_name': 'courgette_lib', 72 'target_name': 'courgette_lib',
72 'type': 'static_library', 73 'type': 'static_library',
73 'dependencies': [ 74 'dependencies': [
74 '../base/base.gyp:base', 75 '../base/base.gyp:base',
75 '../third_party/lzma_sdk/lzma_sdk.gyp:lzma_sdk', 76 '../third_party/lzma_sdk/lzma_sdk.gyp:lzma_sdk',
76 ], 77 ],
(...skipping 44 matching lines...) Expand 10 before | Expand all | Expand 10 after
121 'encoded_program_unittest.cc', 122 'encoded_program_unittest.cc',
122 'encode_decode_unittest.cc', 123 'encode_decode_unittest.cc',
123 'ensemble_unittest.cc', 124 'ensemble_unittest.cc',
124 'image_utils_unittest.cc', 125 'image_utils_unittest.cc',
125 'label_manager_unittest.cc', 126 'label_manager_unittest.cc',
126 'memory_allocator_unittest.cc', 127 'memory_allocator_unittest.cc',
127 'rel32_finder_unittest.cc', 128 'rel32_finder_unittest.cc',
128 'streams_unittest.cc', 129 'streams_unittest.cc',
129 'typedrva_unittest.cc', 130 'typedrva_unittest.cc',
130 'versioning_unittest.cc', 131 'versioning_unittest.cc',
132 'third_party/bsdiff/bsdiff_search_unittest.cc',
131 'third_party/bsdiff/paged_array_unittest.cc', 133 'third_party/bsdiff/paged_array_unittest.cc',
132 'third_party/bsdiff/qsufsort_unittest.cc', 134 'third_party/bsdiff/qsufsort_unittest.cc',
133 ], 135 ],
134 'dependencies': [ 136 'dependencies': [
135 'courgette_lib', 137 'courgette_lib',
136 '../base/base.gyp:base', 138 '../base/base.gyp:base',
137 '../base/base.gyp:base_i18n', 139 '../base/base.gyp:base_i18n',
138 '../base/base.gyp:run_all_unittests', 140 '../base/base.gyp:run_all_unittests',
139 '../base/base.gyp:test_support_base', 141 '../base/base.gyp:test_support_base',
140 '../testing/gtest.gyp:gtest', 142 '../testing/gtest.gyp:gtest',
(...skipping 94 matching lines...) Expand 10 before | Expand all | Expand 10 after
235 '../build/isolate.gypi', 237 '../build/isolate.gypi',
236 ], 238 ],
237 'sources': [ 239 'sources': [
238 'courgette_unittests.isolate', 240 'courgette_unittests.isolate',
239 ], 241 ],
240 }, 242 },
241 ], 243 ],
242 }], 244 }],
243 ], 245 ],
244 } 246 }
OLDNEW
« no previous file with comments | « courgette/BUILD.gn ('k') | courgette/third_party/bsdiff/bsdiff_create.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698