| 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 "patcher_x86_32.h", | 40 "patcher_x86_32.h", |
| 41 "region.h", | 41 "region.h", |
| 42 "simple_delta.cc", | 42 "simple_delta.cc", |
| 43 "simple_delta.h", | 43 "simple_delta.h", |
| 44 "streams.cc", | 44 "streams.cc", |
| 45 "streams.h", | 45 "streams.h", |
| 46 "third_party/bsdiff.h", | 46 "third_party/bsdiff.h", |
| 47 "third_party/bsdiff_apply.cc", | 47 "third_party/bsdiff_apply.cc", |
| 48 "third_party/bsdiff_create.cc", | 48 "third_party/bsdiff_create.cc", |
| 49 "third_party/paged_array.h", | 49 "third_party/paged_array.h", |
| 50 "third_party/qsufsort.h", |
| 50 "types_elf.h", | 51 "types_elf.h", |
| 51 "types_win_pe.h", | 52 "types_win_pe.h", |
| 52 ] | 53 ] |
| 53 | 54 |
| 54 deps = [ | 55 deps = [ |
| 55 "//base", | 56 "//base", |
| 56 "//third_party/lzma_sdk", | 57 "//third_party/lzma_sdk", |
| 57 ] | 58 ] |
| 58 } | 59 } |
| 59 | 60 |
| (...skipping 37 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 97 "difference_estimator_unittest.cc", | 98 "difference_estimator_unittest.cc", |
| 98 "disassembler_elf_32_x86_unittest.cc", | 99 "disassembler_elf_32_x86_unittest.cc", |
| 99 "disassembler_win32_x64_unittest.cc", | 100 "disassembler_win32_x64_unittest.cc", |
| 100 "disassembler_win32_x86_unittest.cc", | 101 "disassembler_win32_x86_unittest.cc", |
| 101 "encode_decode_unittest.cc", | 102 "encode_decode_unittest.cc", |
| 102 "encoded_program_unittest.cc", | 103 "encoded_program_unittest.cc", |
| 103 "ensemble_unittest.cc", | 104 "ensemble_unittest.cc", |
| 104 "memory_allocator_unittest.cc", | 105 "memory_allocator_unittest.cc", |
| 105 "streams_unittest.cc", | 106 "streams_unittest.cc", |
| 106 "third_party/paged_array_unittest.cc", | 107 "third_party/paged_array_unittest.cc", |
| 108 "third_party/qsufsort_unittest.cc", |
| 107 "typedrva_unittest.cc", | 109 "typedrva_unittest.cc", |
| 108 "versioning_unittest.cc", | 110 "versioning_unittest.cc", |
| 109 ] | 111 ] |
| 110 | 112 |
| 111 # TODO(jschuh): crbug.com/167187 fix size_t to int truncations. | 113 # TODO(jschuh): crbug.com/167187 fix size_t to int truncations. |
| 112 configs += [ "//build/config/compiler:no_size_t_to_int_warning" ] | 114 configs += [ "//build/config/compiler:no_size_t_to_int_warning" ] |
| 113 | 115 |
| 114 deps = [ | 116 deps = [ |
| 115 ":courgette_lib", | 117 ":courgette_lib", |
| 116 "//base", | 118 "//base", |
| (...skipping 12 matching lines...) Expand all Loading... |
| 129 "encoded_program_fuzz_unittest.cc", | 131 "encoded_program_fuzz_unittest.cc", |
| 130 ] | 132 ] |
| 131 deps = [ | 133 deps = [ |
| 132 ":courgette_lib", | 134 ":courgette_lib", |
| 133 "//base", | 135 "//base", |
| 134 "//base:i18n", | 136 "//base:i18n", |
| 135 "//base/test:test_support", | 137 "//base/test:test_support", |
| 136 "//testing/gtest", | 138 "//testing/gtest", |
| 137 ] | 139 ] |
| 138 } | 140 } |
| OLD | NEW |