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

Side by Side Diff: courgette/courgette.gyp

Issue 2156223002: [Courgette] Add third party-library: libdivsufsort. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Fix typo in README.chromium: LICEN*S*E. Created 4 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/divsufsort/LICENSE » ('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 45 matching lines...) Expand 10 before | Expand all | Expand 10 after
56 'simple_delta.cc', 56 'simple_delta.cc',
57 'simple_delta.h', 57 'simple_delta.h',
58 'streams.cc', 58 'streams.cc',
59 'streams.h', 59 'streams.h',
60 'third_party/bsdiff/bsdiff.h', 60 'third_party/bsdiff/bsdiff.h',
61 'third_party/bsdiff/bsdiff_apply.cc', 61 'third_party/bsdiff/bsdiff_apply.cc',
62 'third_party/bsdiff/bsdiff_create.cc', 62 'third_party/bsdiff/bsdiff_create.cc',
63 'third_party/bsdiff/bsdiff_search.h', 63 'third_party/bsdiff/bsdiff_search.h',
64 'third_party/bsdiff/paged_array.h', 64 'third_party/bsdiff/paged_array.h',
65 'third_party/bsdiff/qsufsort.h', 65 'third_party/bsdiff/qsufsort.h',
66 'third_party/divsufsort/divsufsort.cc',
67 'third_party/divsufsort/divsufsort.h',
68 'third_party/divsufsort/divsufsort_private.h',
69 'third_party/divsufsort/sssort.cc',
70 'third_party/divsufsort/trsort.cc',
66 'types_elf.h', 71 'types_elf.h',
67 'types_win_pe.h', 72 'types_win_pe.h',
68 ], 73 ],
69 }, 74 },
70 'targets': [ 75 'targets': [
71 { 76 {
72 'target_name': 'courgette_lib', 77 'target_name': 'courgette_lib',
73 'type': 'static_library', 78 'type': 'static_library',
74 'dependencies': [ 79 'dependencies': [
75 '../base/base.gyp:base', 80 '../base/base.gyp:base',
(...skipping 50 matching lines...) Expand 10 before | Expand all | Expand 10 after
126 'label_manager_unittest.cc', 131 'label_manager_unittest.cc',
127 'memory_allocator_unittest.cc', 132 'memory_allocator_unittest.cc',
128 'program_detector_unittest.cc', 133 'program_detector_unittest.cc',
129 'rel32_finder_unittest.cc', 134 'rel32_finder_unittest.cc',
130 'streams_unittest.cc', 135 'streams_unittest.cc',
131 'typedrva_unittest.cc', 136 'typedrva_unittest.cc',
132 'versioning_unittest.cc', 137 'versioning_unittest.cc',
133 'third_party/bsdiff/bsdiff_search_unittest.cc', 138 'third_party/bsdiff/bsdiff_search_unittest.cc',
134 'third_party/bsdiff/paged_array_unittest.cc', 139 'third_party/bsdiff/paged_array_unittest.cc',
135 'third_party/bsdiff/qsufsort_unittest.cc', 140 'third_party/bsdiff/qsufsort_unittest.cc',
141 'third_party/divsufsort/divsufsort_unittest.cc',
136 ], 142 ],
137 'dependencies': [ 143 'dependencies': [
138 'courgette_lib', 144 'courgette_lib',
139 '../base/base.gyp:base', 145 '../base/base.gyp:base',
140 '../base/base.gyp:base_i18n', 146 '../base/base.gyp:base_i18n',
141 '../base/base.gyp:run_all_unittests', 147 '../base/base.gyp:run_all_unittests',
142 '../base/base.gyp:test_support_base', 148 '../base/base.gyp:test_support_base',
143 '../testing/gtest.gyp:gtest', 149 '../testing/gtest.gyp:gtest',
144 ], 150 ],
145 # TODO(jschuh): crbug.com/167187 fix size_t to int truncations. 151 # TODO(jschuh): crbug.com/167187 fix size_t to int truncations.
(...skipping 92 matching lines...) Expand 10 before | Expand all | Expand 10 after
238 '../build/isolate.gypi', 244 '../build/isolate.gypi',
239 ], 245 ],
240 'sources': [ 246 'sources': [
241 'courgette_unittests.isolate', 247 'courgette_unittests.isolate',
242 ], 248 ],
243 }, 249 },
244 ], 250 ],
245 }], 251 }],
246 ], 252 ],
247 } 253 }
OLDNEW
« no previous file with comments | « courgette/BUILD.gn ('k') | courgette/third_party/divsufsort/LICENSE » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698