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

Side by Side Diff: courgette/BUILD.gn

Issue 2031193002: [Courgette] Refactor BSDiff namespaces and bsdiff::search() interface. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Fix more gap; fix Installer confusion; update README.chromium. Created 4 years, 6 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 38 matching lines...) Expand 10 before | Expand all | Expand 10 after
49 "region.h", 49 "region.h",
50 "rel32_finder_win32_x86.cc", 50 "rel32_finder_win32_x86.cc",
51 "rel32_finder_win32_x86.h", 51 "rel32_finder_win32_x86.h",
52 "simple_delta.cc", 52 "simple_delta.cc",
53 "simple_delta.h", 53 "simple_delta.h",
54 "streams.cc", 54 "streams.cc",
55 "streams.h", 55 "streams.h",
56 "third_party/bsdiff/bsdiff.h", 56 "third_party/bsdiff/bsdiff.h",
57 "third_party/bsdiff/bsdiff_apply.cc", 57 "third_party/bsdiff/bsdiff_apply.cc",
58 "third_party/bsdiff/bsdiff_create.cc", 58 "third_party/bsdiff/bsdiff_create.cc",
59 "third_party/bsdiff/bsdiff_search.h",
59 "third_party/bsdiff/paged_array.h", 60 "third_party/bsdiff/paged_array.h",
60 "third_party/bsdiff/qsufsort.h", 61 "third_party/bsdiff/qsufsort.h",
61 "types_elf.h", 62 "types_elf.h",
62 "types_win_pe.h", 63 "types_win_pe.h",
63 ] 64 ]
64 65
65 deps = [ 66 deps = [
66 "//base", 67 "//base",
67 "//third_party/lzma_sdk", 68 "//third_party/lzma_sdk",
68 ] 69 ]
(...skipping 85 matching lines...) Expand 10 before | Expand all | Expand 10 after
154 "encoded_program_fuzz_unittest.cc", 155 "encoded_program_fuzz_unittest.cc",
155 ] 156 ]
156 deps = [ 157 deps = [
157 ":courgette_lib", 158 ":courgette_lib",
158 "//base", 159 "//base",
159 "//base:i18n", 160 "//base:i18n",
160 "//base/test:test_support", 161 "//base/test:test_support",
161 "//testing/gtest", 162 "//testing/gtest",
162 ] 163 ]
163 } 164 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698