| Index: courgette/BUILD.gn
|
| diff --git a/courgette/BUILD.gn b/courgette/BUILD.gn
|
| index af81012b98128fcb4ebacc726ede3f3e6c5da5cf..ce89c42c11206ee3536a3df545f33e61a6f6a230 100644
|
| --- a/courgette/BUILD.gn
|
| +++ b/courgette/BUILD.gn
|
| @@ -7,14 +7,10 @@ import("//testing/test.gni")
|
| static_library("courgette_lib") {
|
| sources = [
|
| "adjustment_method.cc",
|
| - "adjustment_method_2.cc",
|
| "adjustment_method.h",
|
| + "adjustment_method_2.cc",
|
| "assembly_program.cc",
|
| "assembly_program.h",
|
| - "third_party/bsdiff.h",
|
| - "third_party/bsdiff_apply.cc",
|
| - "third_party/bsdiff_create.cc",
|
| - "third_party/paged_array.h",
|
| "courgette.h",
|
| "crc.cc",
|
| "crc.h",
|
| @@ -28,10 +24,10 @@ static_library("courgette_lib") {
|
| "disassembler_elf_32_arm.h",
|
| "disassembler_elf_32_x86.cc",
|
| "disassembler_elf_32_x86.h",
|
| - "disassembler_win32_x86.cc",
|
| - "disassembler_win32_x86.h",
|
| "disassembler_win32_x64.cc",
|
| "disassembler_win32_x64.h",
|
| + "disassembler_win32_x86.cc",
|
| + "disassembler_win32_x86.h",
|
| "encoded_program.cc",
|
| "encoded_program.h",
|
| "ensemble.cc",
|
| @@ -40,15 +36,19 @@ static_library("courgette_lib") {
|
| "ensemble_create.cc",
|
| "memory_allocator.cc",
|
| "memory_allocator.h",
|
| + "patch_generator_x86_32.h",
|
| + "patcher_x86_32.h",
|
| "region.h",
|
| "simple_delta.cc",
|
| "simple_delta.h",
|
| "streams.cc",
|
| "streams.h",
|
| + "third_party/bsdiff.h",
|
| + "third_party/bsdiff_apply.cc",
|
| + "third_party/bsdiff_create.cc",
|
| + "third_party/paged_array.h",
|
| "types_elf.h",
|
| "types_win_pe.h",
|
| - "patch_generator_x86_32.h",
|
| - "patcher_x86_32.h",
|
| ]
|
|
|
| deps = [
|
| @@ -91,20 +91,20 @@ executable("courgette_minimal_tool") {
|
| test("courgette_unittests") {
|
| sources = [
|
| "adjustment_method_unittest.cc",
|
| - "bsdiff_memory_unittest.cc",
|
| "base_test_unittest.cc",
|
| "base_test_unittest.h",
|
| + "bsdiff_memory_unittest.cc",
|
| "difference_estimator_unittest.cc",
|
| "disassembler_elf_32_x86_unittest.cc",
|
| - "disassembler_win32_x86_unittest.cc",
|
| "disassembler_win32_x64_unittest.cc",
|
| - "encoded_program_unittest.cc",
|
| + "disassembler_win32_x86_unittest.cc",
|
| "encode_decode_unittest.cc",
|
| + "encoded_program_unittest.cc",
|
| "ensemble_unittest.cc",
|
| "streams_unittest.cc",
|
| + "third_party/paged_array_unittest.cc",
|
| "typedrva_unittest.cc",
|
| "versioning_unittest.cc",
|
| - "third_party/paged_array_unittest.cc",
|
| ]
|
|
|
| # TODO(jschuh): crbug.com/167187 fix size_t to int truncations.
|
|
|