OSDN Git Service

Import relocation packer from chromium repo
authorDmitriy Ivanov <dimitry@google.com>
Fri, 6 Feb 2015 18:56:28 +0000 (10:56 -0800)
committerDmitriy Ivanov <dimitry@google.com>
Fri, 6 Mar 2015 21:01:08 +0000 (13:01 -0800)
commit87a0617ebe7561bf28d3a19fbe192372598969b8
tree555035b9e767ddbe092c8e66ba9de82fd71637e3
parent45ee73a7fbe98cba2ccb007b60c027d27dfca1cb
Import relocation packer from chromium repo

Bug: 18051137
Change-Id: Ia67fa11da8247e3f86f70a8ce99e6695f2c05423
36 files changed:
tools/relocation_packer/BUILD.gn [new file with mode: 0644]
tools/relocation_packer/LICENSE [new file with mode: 0644]
tools/relocation_packer/README.TXT [new file with mode: 0644]
tools/relocation_packer/config.gni [new file with mode: 0644]
tools/relocation_packer/relocation_packer.gyp [new file with mode: 0644]
tools/relocation_packer/src/debug.cc [new file with mode: 0644]
tools/relocation_packer/src/debug.h [new file with mode: 0644]
tools/relocation_packer/src/debug_unittest.cc [new file with mode: 0644]
tools/relocation_packer/src/delta_encoder.cc [new file with mode: 0644]
tools/relocation_packer/src/delta_encoder.h [new file with mode: 0644]
tools/relocation_packer/src/delta_encoder_unittest.cc [new file with mode: 0644]
tools/relocation_packer/src/elf_file.cc [new file with mode: 0644]
tools/relocation_packer/src/elf_file.h [new file with mode: 0644]
tools/relocation_packer/src/elf_file_unittest.cc [new file with mode: 0644]
tools/relocation_packer/src/elf_traits.h [new file with mode: 0644]
tools/relocation_packer/src/leb128.cc [new file with mode: 0644]
tools/relocation_packer/src/leb128.h [new file with mode: 0644]
tools/relocation_packer/src/leb128_unittest.cc [new file with mode: 0644]
tools/relocation_packer/src/main.cc [new file with mode: 0644]
tools/relocation_packer/src/packer.cc [new file with mode: 0644]
tools/relocation_packer/src/packer.h [new file with mode: 0644]
tools/relocation_packer/src/packer_unittest.cc [new file with mode: 0644]
tools/relocation_packer/src/run_all_unittests.cc [new file with mode: 0644]
tools/relocation_packer/src/run_length_encoder.cc [new file with mode: 0644]
tools/relocation_packer/src/run_length_encoder.h [new file with mode: 0644]
tools/relocation_packer/src/run_length_encoder_unittest.cc [new file with mode: 0644]
tools/relocation_packer/src/sleb128.cc [new file with mode: 0644]
tools/relocation_packer/src/sleb128.h [new file with mode: 0644]
tools/relocation_packer/src/sleb128_unittest.cc [new file with mode: 0644]
tools/relocation_packer/test_data/elf_file_unittest_relocs.cc [new file with mode: 0644]
tools/relocation_packer/test_data/elf_file_unittest_relocs_arm32.so [new file with mode: 0755]
tools/relocation_packer/test_data/elf_file_unittest_relocs_arm32_packed.so [new file with mode: 0755]
tools/relocation_packer/test_data/elf_file_unittest_relocs_arm64.so [new file with mode: 0755]
tools/relocation_packer/test_data/elf_file_unittest_relocs_arm64_packed.so [new file with mode: 0755]
tools/relocation_packer/test_data/generate_elf_file_unittest_relocs.py [new file with mode: 0755]
tools/relocation_packer/test_data/generate_elf_file_unittest_relocs.sh [new file with mode: 0755]