| 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 { | 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 Loading... |
| 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 } |
| OLD | NEW |