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

Side by Side Diff: courgette/BUILD.gn

Issue 2187953003: [Courgette] Replace QSufSort with libdivsufsort. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Fix spacing. 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 | « no previous file | courgette/courgette.gyp » ('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 2014 The Chromium Authors. All rights reserved. 1 # Copyright 2014 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 import("//testing/test.gni") 5 import("//testing/test.gni")
6 6
7 static_library("courgette_lib") { 7 static_library("courgette_lib") {
8 sources = [ 8 sources = [
9 "adjustment_method.cc", 9 "adjustment_method.cc",
10 "adjustment_method.h", 10 "adjustment_method.h",
(...skipping 44 matching lines...) Expand 10 before | Expand all | Expand 10 after
55 "rel32_finder_x86.h", 55 "rel32_finder_x86.h",
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",
66 "third_party/divsufsort/divsufsort.cc", 65 "third_party/divsufsort/divsufsort.cc",
67 "third_party/divsufsort/divsufsort.h", 66 "third_party/divsufsort/divsufsort.h",
68 "third_party/divsufsort/divsufsort_private.h", 67 "third_party/divsufsort/divsufsort_private.h",
69 "third_party/divsufsort/sssort.cc", 68 "third_party/divsufsort/sssort.cc",
70 "third_party/divsufsort/trsort.cc", 69 "third_party/divsufsort/trsort.cc",
71 "types_elf.h", 70 "types_elf.h",
72 "types_win_pe.h", 71 "types_win_pe.h",
73 ] 72 ]
74 73
75 deps = [ 74 deps = [
(...skipping 87 matching lines...) Expand 10 before | Expand all | Expand 10 after
163 "encoded_program_unittest.cc", 162 "encoded_program_unittest.cc",
164 "ensemble_unittest.cc", 163 "ensemble_unittest.cc",
165 "image_utils_unittest.cc", 164 "image_utils_unittest.cc",
166 "label_manager_unittest.cc", 165 "label_manager_unittest.cc",
167 "memory_allocator_unittest.cc", 166 "memory_allocator_unittest.cc",
168 "program_detector_unittest.cc", 167 "program_detector_unittest.cc",
169 "rel32_finder_unittest.cc", 168 "rel32_finder_unittest.cc",
170 "streams_unittest.cc", 169 "streams_unittest.cc",
171 "third_party/bsdiff/bsdiff_search_unittest.cc", 170 "third_party/bsdiff/bsdiff_search_unittest.cc",
172 "third_party/bsdiff/paged_array_unittest.cc", 171 "third_party/bsdiff/paged_array_unittest.cc",
173 "third_party/bsdiff/qsufsort_unittest.cc",
174 "third_party/divsufsort/divsufsort_unittest.cc", 172 "third_party/divsufsort/divsufsort_unittest.cc",
175 "typedrva_unittest.cc", 173 "typedrva_unittest.cc",
176 "versioning_unittest.cc", 174 "versioning_unittest.cc",
177 ] 175 ]
178 176
179 # TODO(jschuh): crbug.com/167187 fix size_t to int truncations. 177 # TODO(jschuh): crbug.com/167187 fix size_t to int truncations.
180 configs += [ "//build/config/compiler:no_size_t_to_int_warning" ] 178 configs += [ "//build/config/compiler:no_size_t_to_int_warning" ]
181 179
182 deps = [ 180 deps = [
183 ":courgette_lib", 181 ":courgette_lib",
(...skipping 16 matching lines...) Expand all
200 "encoded_program_fuzz_unittest.cc", 198 "encoded_program_fuzz_unittest.cc",
201 ] 199 ]
202 deps = [ 200 deps = [
203 ":courgette_lib", 201 ":courgette_lib",
204 "//base", 202 "//base",
205 "//base:i18n", 203 "//base:i18n",
206 "//base/test:test_support", 204 "//base/test:test_support",
207 "//testing/gtest", 205 "//testing/gtest",
208 ] 206 ]
209 } 207 }
OLDNEW
« no previous file with comments | « no previous file | courgette/courgette.gyp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698