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

Side by Side Diff: courgette/BUILD.gn

Issue 2963463002: [Zucchini] Generic suffix array algorithms. (Closed)
Patch Set: Fix SearchExact performance Created 3 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
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 142 matching lines...) Expand 10 before | Expand all | Expand 10 after
153 deps = [ 153 deps = [
154 courgette64_label, 154 courgette64_label,
155 ] 155 ]
156 } 156 }
157 } 157 }
158 } 158 }
159 } 159 }
160 160
161 test("courgette_unittests") { 161 test("courgette_unittests") {
162 sources = [ 162 sources = [
163 "adjustment_method_unittest.cc",
huangs 2017/06/28 22:30:35 Why change this file?? If you want to run a test
etiennep1 2017/06/28 23:03:48 That was a mistake, sorry! Also, thanks for the ti
164 "base_test_unittest.cc",
165 "base_test_unittest.h",
166 "bsdiff_memory_unittest.cc",
167 "consecutive_range_visitor_unittest.cc",
168 "difference_estimator_unittest.cc",
169 "disassembler_elf_32_x86_unittest.cc",
170 "disassembler_win32_x64_unittest.cc",
171 "disassembler_win32_x86_unittest.cc",
172 "encode_decode_unittest.cc",
173 "encoded_program_unittest.cc",
174 "ensemble_unittest.cc",
175 "image_utils_unittest.cc",
176 "label_manager_unittest.cc",
177 "memory_allocator_unittest.cc",
178 "program_detector_unittest.cc",
179 "rel32_finder_unittest.cc",
180 "streams_unittest.cc",
181 "third_party/bsdiff/bsdiff_search_unittest.cc", 163 "third_party/bsdiff/bsdiff_search_unittest.cc",
182 "third_party/bsdiff/paged_array_unittest.cc",
183 "third_party/divsufsort/divsufsort_unittest.cc",
184 "typedrva_unittest.cc",
185 "versioning_unittest.cc",
186 ] 164 ]
187 165
188 # TODO(jschuh): crbug.com/167187 fix size_t to int truncations. 166 # TODO(jschuh): crbug.com/167187 fix size_t to int truncations.
189 configs += [ "//build/config/compiler:no_size_t_to_int_warning" ] 167 configs += [ "//build/config/compiler:no_size_t_to_int_warning" ]
190 168
191 deps = [ 169 deps = [
192 ":courgette_lib", 170 ":courgette_lib",
193 "//base", 171 "//base",
194 "//base:i18n", 172 "//base:i18n",
195 "//base/test:run_all_unittests", 173 "//base/test:run_all_unittests",
(...skipping 13 matching lines...) Expand all
209 "encoded_program_fuzz_unittest.cc", 187 "encoded_program_fuzz_unittest.cc",
210 ] 188 ]
211 deps = [ 189 deps = [
212 ":courgette_lib", 190 ":courgette_lib",
213 "//base", 191 "//base",
214 "//base:i18n", 192 "//base:i18n",
215 "//base/test:test_support", 193 "//base/test:test_support",
216 "//testing/gtest", 194 "//testing/gtest",
217 ] 195 ]
218 } 196 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698