| OLD | NEW |
| 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 29 matching lines...) Expand all Loading... |
| 40 "image_utils.h", | 40 "image_utils.h", |
| 41 "label_manager.cc", | 41 "label_manager.cc", |
| 42 "label_manager.h", | 42 "label_manager.h", |
| 43 "memory_allocator.cc", | 43 "memory_allocator.cc", |
| 44 "memory_allocator.h", | 44 "memory_allocator.h", |
| 45 "patch_generator_x86_32.h", | 45 "patch_generator_x86_32.h", |
| 46 "patcher_x86_32.h", | 46 "patcher_x86_32.h", |
| 47 "program_detector.cc", | 47 "program_detector.cc", |
| 48 "program_detector.h", | 48 "program_detector.h", |
| 49 "region.h", | 49 "region.h", |
| 50 "rel32_finder_win32_x86.cc", | 50 "rel32_finder.cc", |
| 51 "rel32_finder_win32_x86.h", | 51 "rel32_finder.h", |
| 52 "rel32_finder_x64.cc", |
| 53 "rel32_finder_x64.h", |
| 54 "rel32_finder_x86.cc", |
| 55 "rel32_finder_x86.h", |
| 52 "simple_delta.cc", | 56 "simple_delta.cc", |
| 53 "simple_delta.h", | 57 "simple_delta.h", |
| 54 "streams.cc", | 58 "streams.cc", |
| 55 "streams.h", | 59 "streams.h", |
| 56 "third_party/bsdiff/bsdiff.h", | 60 "third_party/bsdiff/bsdiff.h", |
| 57 "third_party/bsdiff/bsdiff_apply.cc", | 61 "third_party/bsdiff/bsdiff_apply.cc", |
| 58 "third_party/bsdiff/bsdiff_create.cc", | 62 "third_party/bsdiff/bsdiff_create.cc", |
| 59 "third_party/bsdiff/paged_array.h", | 63 "third_party/bsdiff/paged_array.h", |
| 60 "third_party/bsdiff/qsufsort.h", | 64 "third_party/bsdiff/qsufsort.h", |
| 61 "types_elf.h", | 65 "types_elf.h", |
| (...skipping 53 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 115 "difference_estimator_unittest.cc", | 119 "difference_estimator_unittest.cc", |
| 116 "disassembler_elf_32_x86_unittest.cc", | 120 "disassembler_elf_32_x86_unittest.cc", |
| 117 "disassembler_win32_x64_unittest.cc", | 121 "disassembler_win32_x64_unittest.cc", |
| 118 "disassembler_win32_x86_unittest.cc", | 122 "disassembler_win32_x86_unittest.cc", |
| 119 "encode_decode_unittest.cc", | 123 "encode_decode_unittest.cc", |
| 120 "encoded_program_unittest.cc", | 124 "encoded_program_unittest.cc", |
| 121 "ensemble_unittest.cc", | 125 "ensemble_unittest.cc", |
| 122 "image_utils_unittest.cc", | 126 "image_utils_unittest.cc", |
| 123 "label_manager_unittest.cc", | 127 "label_manager_unittest.cc", |
| 124 "memory_allocator_unittest.cc", | 128 "memory_allocator_unittest.cc", |
| 125 "rel32_finder_win32_x86_unittest.cc", | 129 "rel32_finder_unittest.cc", |
| 126 "streams_unittest.cc", | 130 "streams_unittest.cc", |
| 127 "third_party/bsdiff/paged_array_unittest.cc", | 131 "third_party/bsdiff/paged_array_unittest.cc", |
| 128 "third_party/bsdiff/qsufsort_unittest.cc", | 132 "third_party/bsdiff/qsufsort_unittest.cc", |
| 129 "typedrva_unittest.cc", | 133 "typedrva_unittest.cc", |
| 130 "versioning_unittest.cc", | 134 "versioning_unittest.cc", |
| 131 ] | 135 ] |
| 132 | 136 |
| 133 # TODO(jschuh): crbug.com/167187 fix size_t to int truncations. | 137 # TODO(jschuh): crbug.com/167187 fix size_t to int truncations. |
| 134 configs += [ "//build/config/compiler:no_size_t_to_int_warning" ] | 138 configs += [ "//build/config/compiler:no_size_t_to_int_warning" ] |
| 135 | 139 |
| (...skipping 18 matching lines...) Expand all Loading... |
| 154 "encoded_program_fuzz_unittest.cc", | 158 "encoded_program_fuzz_unittest.cc", |
| 155 ] | 159 ] |
| 156 deps = [ | 160 deps = [ |
| 157 ":courgette_lib", | 161 ":courgette_lib", |
| 158 "//base", | 162 "//base", |
| 159 "//base:i18n", | 163 "//base:i18n", |
| 160 "//base/test:test_support", | 164 "//base/test:test_support", |
| 161 "//testing/gtest", | 165 "//testing/gtest", |
| 162 ] | 166 ] |
| 163 } | 167 } |
| OLD | NEW |