Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(134)

Side by Side Diff: tools/relocation_packer/relocation_packer.gyp

Issue 310483003: Add a host tool to pack R_ARM_RELATIVE relocations in libchrome.<ver>.so. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Remove binary test data files, dcommit separately. Created 6 years, 6 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
« no previous file with comments | « tools/relocation_packer/README.TXT ('k') | tools/relocation_packer/src/debug.h » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
(Empty)
1 # Copyright (c) 2014 The Chromium Authors. All rights reserved.
2 # Use of this source code is governed by a BSD-style license that can be
3 # found in the LICENSE file.
4
5 {
6 'targets': [
7 {
8 'target_name': 'lib_relocation_packer',
9 'toolsets': ['host'],
10 'type': 'static_library',
11 'dependencies': [
12 '../../third_party/elfutils/elfutils.gyp:libelf',
13 ],
14 'sources': [
15 'src/debug.cc',
16 'src/elf_file.cc',
17 'src/leb128.cc',
18 'src/packer.cc',
19 'src/run_length_encoder.cc',
20 ],
21 },
22 {
23 'target_name': 'relocation_packer',
24 'toolsets': ['host'],
25 'type': 'executable',
26 'dependencies': [
27 '../../third_party/elfutils/elfutils.gyp:libelf',
28 'lib_relocation_packer',
29 ],
30 'sources': [
31 'src/main.cc',
32 ],
33 },
34 {
35 'target_name': 'relocation_packer_unittests',
36 'toolsets': ['host'],
37 'type': 'executable',
38 'cflags': [
39 '-DINTERMEDIATE_DIR="<(INTERMEDIATE_DIR)"',
40 ],
41 'dependencies': [
42 '../../testing/gtest.gyp:gtest',
43 'lib_relocation_packer',
44 ],
45 'include_dirs': [
46 '../..',
47 ],
48 'sources': [
49 'src/elf_file_unittest.cc',
50 'src/leb128_unittest.cc',
51 'src/packer_unittest.cc',
52 'src/run_length_encoder_unittest.cc',
53 'src/run_all_unittests.cc',
54 ],
55 'copies': [
56 {
57 'destination': '<(INTERMEDIATE_DIR)',
58 'files': [
59 'test_data/elf_file_unittest_relocs.so',
60 'test_data/elf_file_unittest_relocs_packed.so',
61 ],
62 },
63 ],
64 },
65 ],
66 }
OLDNEW
« no previous file with comments | « tools/relocation_packer/README.TXT ('k') | tools/relocation_packer/src/debug.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698