| 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 45 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 56 "simple_delta.cc", | 56 "simple_delta.cc", |
| 57 "simple_delta.h", | 57 "simple_delta.h", |
| 58 "streams.cc", | 58 "streams.cc", |
| 59 "streams.h", | 59 "streams.h", |
| 60 "third_party/bsdiff/bsdiff.h", | 60 "third_party/bsdiff/bsdiff.h", |
| 61 "third_party/bsdiff/bsdiff_apply.cc", | 61 "third_party/bsdiff/bsdiff_apply.cc", |
| 62 "third_party/bsdiff/bsdiff_create.cc", | 62 "third_party/bsdiff/bsdiff_create.cc", |
| 63 "third_party/bsdiff/bsdiff_search.h", | 63 "third_party/bsdiff/bsdiff_search.h", |
| 64 "third_party/bsdiff/paged_array.h", | 64 "third_party/bsdiff/paged_array.h", |
| 65 "third_party/bsdiff/qsufsort.h", | 65 "third_party/bsdiff/qsufsort.h", |
| 66 "third_party/divsufsort/divsufsort.cc", |
| 67 "third_party/divsufsort/divsufsort.h", |
| 68 "third_party/divsufsort/divsufsort_private.h", |
| 69 "third_party/divsufsort/sssort.cc", |
| 70 "third_party/divsufsort/trsort.cc", |
| 66 "types_elf.h", | 71 "types_elf.h", |
| 67 "types_win_pe.h", | 72 "types_win_pe.h", |
| 68 ] | 73 ] |
| 69 | 74 |
| 70 deps = [ | 75 deps = [ |
| 71 "//base", | 76 "//base", |
| 72 "//third_party/lzma_sdk", | 77 "//third_party/lzma_sdk", |
| 73 ] | 78 ] |
| 74 } | 79 } |
| 75 | 80 |
| (...skipping 50 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 126 "ensemble_unittest.cc", | 131 "ensemble_unittest.cc", |
| 127 "image_utils_unittest.cc", | 132 "image_utils_unittest.cc", |
| 128 "label_manager_unittest.cc", | 133 "label_manager_unittest.cc", |
| 129 "memory_allocator_unittest.cc", | 134 "memory_allocator_unittest.cc", |
| 130 "program_detector_unittest.cc", | 135 "program_detector_unittest.cc", |
| 131 "rel32_finder_unittest.cc", | 136 "rel32_finder_unittest.cc", |
| 132 "streams_unittest.cc", | 137 "streams_unittest.cc", |
| 133 "third_party/bsdiff/bsdiff_search_unittest.cc", | 138 "third_party/bsdiff/bsdiff_search_unittest.cc", |
| 134 "third_party/bsdiff/paged_array_unittest.cc", | 139 "third_party/bsdiff/paged_array_unittest.cc", |
| 135 "third_party/bsdiff/qsufsort_unittest.cc", | 140 "third_party/bsdiff/qsufsort_unittest.cc", |
| 141 "third_party/divsufsort/divsufsort_unittest.cc", |
| 136 "typedrva_unittest.cc", | 142 "typedrva_unittest.cc", |
| 137 "versioning_unittest.cc", | 143 "versioning_unittest.cc", |
| 138 ] | 144 ] |
| 139 | 145 |
| 140 # TODO(jschuh): crbug.com/167187 fix size_t to int truncations. | 146 # TODO(jschuh): crbug.com/167187 fix size_t to int truncations. |
| 141 configs += [ "//build/config/compiler:no_size_t_to_int_warning" ] | 147 configs += [ "//build/config/compiler:no_size_t_to_int_warning" ] |
| 142 | 148 |
| 143 deps = [ | 149 deps = [ |
| 144 ":courgette_lib", | 150 ":courgette_lib", |
| 145 "//base", | 151 "//base", |
| (...skipping 15 matching lines...) Expand all Loading... |
| 161 "encoded_program_fuzz_unittest.cc", | 167 "encoded_program_fuzz_unittest.cc", |
| 162 ] | 168 ] |
| 163 deps = [ | 169 deps = [ |
| 164 ":courgette_lib", | 170 ":courgette_lib", |
| 165 "//base", | 171 "//base", |
| 166 "//base:i18n", | 172 "//base:i18n", |
| 167 "//base/test:test_support", | 173 "//base/test:test_support", |
| 168 "//testing/gtest", | 174 "//testing/gtest", |
| 169 ] | 175 ] |
| 170 } | 176 } |
| OLD | NEW |