OLD | NEW |
(Empty) | |
| 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 |
| 3 # found in the LICENSE file. |
| 4 |
| 5 { |
| 6 'targets': [ |
| 7 { |
| 8 # GN: //third_party/android_crazy_linker:android_crazy_linker |
| 9 'target_name': 'crazy_linker', |
| 10 'type': 'static_library', |
| 11 'include_dirs': [ |
| 12 'src/include', |
| 13 'src/src', |
| 14 ], |
| 15 'defines': [ |
| 16 'CRAZY_DEBUG=0', |
| 17 ], |
| 18 'sources': [ |
| 19 'src/src/crazy_linker_api.cpp', |
| 20 'src/src/crazy_linker_ashmem.cpp', |
| 21 'src/src/crazy_linker_debug.cpp', |
| 22 'src/src/crazy_linker_elf_loader.cpp', |
| 23 'src/src/crazy_linker_elf_relocations.cpp', |
| 24 'src/src/crazy_linker_elf_relro.cpp', |
| 25 'src/src/crazy_linker_elf_symbols.cpp', |
| 26 'src/src/crazy_linker_elf_view.cpp', |
| 27 'src/src/crazy_linker_error.cpp', |
| 28 'src/src/crazy_linker_globals.cpp', |
| 29 'src/src/crazy_linker_library_list.cpp', |
| 30 'src/src/crazy_linker_library_view.cpp', |
| 31 'src/src/crazy_linker_line_reader.cpp', |
| 32 'src/src/crazy_linker_proc_maps.cpp', |
| 33 'src/src/crazy_linker_rdebug.cpp', |
| 34 'src/src/crazy_linker_search_path_list.cpp', |
| 35 'src/src/crazy_linker_shared_library.cpp', |
| 36 'src/src/crazy_linker_system.cpp', |
| 37 'src/src/crazy_linker_thread.cpp', |
| 38 'src/src/crazy_linker_util.cpp', |
| 39 'src/src/crazy_linker_wrappers.cpp', |
| 40 'src/src/crazy_linker_zip.cpp', |
| 41 'src/src/linker_phdr.cpp', |
| 42 ], |
| 43 'link_settings': { |
| 44 'libraries': [ |
| 45 '-llog', |
| 46 '-ldl', |
| 47 ], |
| 48 }, |
| 49 'direct_dependent_settings': { |
| 50 'include_dirs': [ |
| 51 'src/include', |
| 52 ], |
| 53 }, |
| 54 }, |
| 55 ], |
| 56 } |
OLD | NEW |