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

Side by Side Diff: courgette/BUILD.gn

Issue 1961963003: Move //courgette/third_party to subfolder. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Fixes according to comments Created 4 years, 7 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 33 matching lines...) Expand 10 before | Expand all | Expand 10 after
44 "patcher_x86_32.h", 44 "patcher_x86_32.h",
45 "program_detector.cc", 45 "program_detector.cc",
46 "program_detector.h", 46 "program_detector.h",
47 "region.h", 47 "region.h",
48 "rel32_finder_win32_x86.cc", 48 "rel32_finder_win32_x86.cc",
49 "rel32_finder_win32_x86.h", 49 "rel32_finder_win32_x86.h",
50 "simple_delta.cc", 50 "simple_delta.cc",
51 "simple_delta.h", 51 "simple_delta.h",
52 "streams.cc", 52 "streams.cc",
53 "streams.h", 53 "streams.h",
54 "third_party/bsdiff.h", 54 "third_party/bsdiff/bsdiff.h",
55 "third_party/bsdiff_apply.cc", 55 "third_party/bsdiff/bsdiff_apply.cc",
56 "third_party/bsdiff_create.cc", 56 "third_party/bsdiff/bsdiff_create.cc",
57 "third_party/paged_array.h", 57 "third_party/bsdiff/paged_array.h",
58 "third_party/qsufsort.h", 58 "third_party/bsdiff/qsufsort.h",
59 "types_elf.h", 59 "types_elf.h",
60 "types_win_pe.h", 60 "types_win_pe.h",
61 ] 61 ]
62 62
63 deps = [ 63 deps = [
64 "//base", 64 "//base",
65 "//third_party/lzma_sdk", 65 "//third_party/lzma_sdk",
66 ] 66 ]
67 } 67 }
68 68
(...skipping 44 matching lines...) Expand 10 before | Expand all | Expand 10 after
113 "disassembler_win32_x64_unittest.cc", 113 "disassembler_win32_x64_unittest.cc",
114 "disassembler_win32_x86_unittest.cc", 114 "disassembler_win32_x86_unittest.cc",
115 "encode_decode_unittest.cc", 115 "encode_decode_unittest.cc",
116 "encoded_program_unittest.cc", 116 "encoded_program_unittest.cc",
117 "ensemble_unittest.cc", 117 "ensemble_unittest.cc",
118 "image_utils_unittest.cc", 118 "image_utils_unittest.cc",
119 "label_manager_unittest.cc", 119 "label_manager_unittest.cc",
120 "memory_allocator_unittest.cc", 120 "memory_allocator_unittest.cc",
121 "rel32_finder_win32_x86_unittest.cc", 121 "rel32_finder_win32_x86_unittest.cc",
122 "streams_unittest.cc", 122 "streams_unittest.cc",
123 "third_party/paged_array_unittest.cc", 123 "third_party/bsdiff/paged_array_unittest.cc",
124 "third_party/qsufsort_unittest.cc", 124 "third_party/bsdiff/qsufsort_unittest.cc",
125 "typedrva_unittest.cc", 125 "typedrva_unittest.cc",
126 "versioning_unittest.cc", 126 "versioning_unittest.cc",
127 ] 127 ]
128 128
129 # TODO(jschuh): crbug.com/167187 fix size_t to int truncations. 129 # TODO(jschuh): crbug.com/167187 fix size_t to int truncations.
130 configs += [ "//build/config/compiler:no_size_t_to_int_warning" ] 130 configs += [ "//build/config/compiler:no_size_t_to_int_warning" ]
131 131
132 deps = [ 132 deps = [
133 ":courgette_lib", 133 ":courgette_lib",
134 "//base", 134 "//base",
(...skipping 15 matching lines...) Expand all
150 "encoded_program_fuzz_unittest.cc", 150 "encoded_program_fuzz_unittest.cc",
151 ] 151 ]
152 deps = [ 152 deps = [
153 ":courgette_lib", 153 ":courgette_lib",
154 "//base", 154 "//base",
155 "//base:i18n", 155 "//base:i18n",
156 "//base/test:test_support", 156 "//base/test:test_support",
157 "//testing/gtest", 157 "//testing/gtest",
158 ] 158 ]
159 } 159 }
OLDNEW
« no previous file with comments | « components/update_client/component_patcher_unittest.cc ('k') | courgette/bsdiff_memory_unittest.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698