Chromium Code Reviews| 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 # This is a GYP include file that contains directives to build the | |
| 6 # crazy_linker sources as _part_ of another target. | |
|
Nico
2014/06/13 22:54:35
This doesn't look like it's true.
| |
| 7 | |
| 8 { | |
| 9 'targets': [ | |
| 10 { | |
| 11 'target_name': 'crazy_linker', | |
| 12 'type': 'static_library', | |
| 13 'include_dirs': [ | |
| 14 'src/include', | |
| 15 'src/src', | |
| 16 ], | |
| 17 'defines': [ | |
| 18 'CRAZY_DEBUG=0', | |
| 19 ], | |
| 20 'sources': [ | |
| 21 'src/src/crazy_linker_api.cpp', | |
| 22 'src/src/crazy_linker_ashmem.cpp', | |
| 23 'src/src/crazy_linker_debug.cpp', | |
| 24 'src/src/crazy_linker_elf_loader.cpp', | |
| 25 'src/src/crazy_linker_elf_relocations.cpp', | |
| 26 'src/src/crazy_linker_elf_relro.cpp', | |
| 27 'src/src/crazy_linker_elf_symbols.cpp', | |
| 28 'src/src/crazy_linker_elf_view.cpp', | |
| 29 'src/src/crazy_linker_error.cpp', | |
| 30 'src/src/crazy_linker_globals.cpp', | |
| 31 'src/src/crazy_linker_library_list.cpp', | |
| 32 'src/src/crazy_linker_library_view.cpp', | |
| 33 'src/src/crazy_linker_line_reader.cpp', | |
| 34 'src/src/crazy_linker_proc_maps.cpp', | |
| 35 'src/src/crazy_linker_rdebug.cpp', | |
| 36 'src/src/crazy_linker_search_path_list.cpp', | |
| 37 'src/src/crazy_linker_shared_library.cpp', | |
| 38 'src/src/crazy_linker_system.cpp', | |
| 39 'src/src/crazy_linker_thread.cpp', | |
| 40 'src/src/crazy_linker_util.cpp', | |
| 41 'src/src/crazy_linker_wrappers.cpp', | |
| 42 'src/src/linker_phdr.cpp', | |
| 43 ], | |
| 44 'link_settings': { | |
| 45 'libraries': [ | |
| 46 '-llog', | |
| 47 '-ldl', | |
| 48 ], | |
| 49 }, | |
| 50 'direct_dependent_settings': { | |
| 51 'include_dirs': [ | |
| 52 'src/include', | |
| 53 ], | |
| 54 }, | |
| 55 }, | |
| 56 ], | |
| 57 } | |
| OLD | NEW |