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

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

Issue 392653002: Upgrade logging to resemble base/logging.h. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Update for review feedback Created 6 years, 5 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 | « no previous file | 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
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 { 5 {
6 'targets': [ 6 'targets': [
7 { 7 {
8 'target_name': 'lib_relocation_packer', 8 'target_name': 'lib_relocation_packer',
9 'toolsets': ['host'], 9 'toolsets': ['host'],
10 'type': 'static_library', 10 'type': 'static_library',
(...skipping 28 matching lines...) Expand all
39 '-DINTERMEDIATE_DIR="<(INTERMEDIATE_DIR)"', 39 '-DINTERMEDIATE_DIR="<(INTERMEDIATE_DIR)"',
40 ], 40 ],
41 'dependencies': [ 41 'dependencies': [
42 '../../testing/gtest.gyp:gtest', 42 '../../testing/gtest.gyp:gtest',
43 'lib_relocation_packer', 43 'lib_relocation_packer',
44 ], 44 ],
45 'include_dirs': [ 45 'include_dirs': [
46 '../..', 46 '../..',
47 ], 47 ],
48 'sources': [ 48 'sources': [
49 'src/debug_unittest.cc',
49 'src/elf_file_unittest.cc', 50 'src/elf_file_unittest.cc',
50 'src/leb128_unittest.cc', 51 'src/leb128_unittest.cc',
51 'src/packer_unittest.cc', 52 'src/packer_unittest.cc',
52 'src/run_length_encoder_unittest.cc', 53 'src/run_length_encoder_unittest.cc',
53 'src/run_all_unittests.cc', 54 'src/run_all_unittests.cc',
54 ], 55 ],
55 'copies': [ 56 'copies': [
56 { 57 {
57 'destination': '<(INTERMEDIATE_DIR)', 58 'destination': '<(INTERMEDIATE_DIR)',
58 'files': [ 59 'files': [
59 'test_data/elf_file_unittest_relocs.so', 60 'test_data/elf_file_unittest_relocs.so',
60 'test_data/elf_file_unittest_relocs_packed.so', 61 'test_data/elf_file_unittest_relocs_packed.so',
61 ], 62 ],
62 }, 63 },
63 ], 64 ],
64 }, 65 },
65 ], 66 ],
66 } 67 }
OLDNEW
« no previous file with comments | « no previous file | tools/relocation_packer/src/debug.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698