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

Side by Side Diff: courgette/BUILD.gn

Issue 2055343002: Courgette: Add static method QuickDetect() to optimize program detection. (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 | « 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 109 matching lines...) Expand 10 before | Expand all | Expand 10 after
120 "difference_estimator_unittest.cc", 120 "difference_estimator_unittest.cc",
121 "disassembler_elf_32_x86_unittest.cc", 121 "disassembler_elf_32_x86_unittest.cc",
122 "disassembler_win32_x64_unittest.cc", 122 "disassembler_win32_x64_unittest.cc",
123 "disassembler_win32_x86_unittest.cc", 123 "disassembler_win32_x86_unittest.cc",
124 "encode_decode_unittest.cc", 124 "encode_decode_unittest.cc",
125 "encoded_program_unittest.cc", 125 "encoded_program_unittest.cc",
126 "ensemble_unittest.cc", 126 "ensemble_unittest.cc",
127 "image_utils_unittest.cc", 127 "image_utils_unittest.cc",
128 "label_manager_unittest.cc", 128 "label_manager_unittest.cc",
129 "memory_allocator_unittest.cc", 129 "memory_allocator_unittest.cc",
130 "program_detector_unittest.cc",
130 "rel32_finder_unittest.cc", 131 "rel32_finder_unittest.cc",
131 "streams_unittest.cc", 132 "streams_unittest.cc",
132 "third_party/bsdiff/bsdiff_search_unittest.cc", 133 "third_party/bsdiff/bsdiff_search_unittest.cc",
133 "third_party/bsdiff/paged_array_unittest.cc", 134 "third_party/bsdiff/paged_array_unittest.cc",
134 "third_party/bsdiff/qsufsort_unittest.cc", 135 "third_party/bsdiff/qsufsort_unittest.cc",
135 "typedrva_unittest.cc", 136 "typedrva_unittest.cc",
136 "versioning_unittest.cc", 137 "versioning_unittest.cc",
137 ] 138 ]
138 139
139 # TODO(jschuh): crbug.com/167187 fix size_t to int truncations. 140 # TODO(jschuh): crbug.com/167187 fix size_t to int truncations.
(...skipping 20 matching lines...) Expand all
160 "encoded_program_fuzz_unittest.cc", 161 "encoded_program_fuzz_unittest.cc",
161 ] 162 ]
162 deps = [ 163 deps = [
163 ":courgette_lib", 164 ":courgette_lib",
164 "//base", 165 "//base",
165 "//base:i18n", 166 "//base:i18n",
166 "//base/test:test_support", 167 "//base/test:test_support",
167 "//testing/gtest", 168 "//testing/gtest",
168 ] 169 ]
169 } 170 }
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