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

Side by Side Diff: third_party/crazy_linker/crazy_linker.gypi

Issue 23717023: Android: Add chrome-specific dynamic linker. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Rebase to fix build. Created 7 years, 3 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
OLDNEW
(Empty)
1 # Copyright (c) 2013 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.
7
8 {
9 'include_dirs': [
10 '<(DEPTH)/third_party/crazy_linker/crazy_linker/include',
11 '<(DEPTH)/third_party/crazy_linker/crazy_linker/src',
12 ],
13 'defines': [
14 'CRAZY_DEBUG=0',
15 ],
16 'sources': [
17 '<(DEPTH)/third_party/crazy_linker/crazy_linker/src/crazy_linker_api.cpp',
18 '<(DEPTH)/third_party/crazy_linker/crazy_linker/src/crazy_linker_ashmem.cpp' ,
19 '<(DEPTH)/third_party/crazy_linker/crazy_linker/src/crazy_linker_debug.cpp',
20 '<(DEPTH)/third_party/crazy_linker/crazy_linker/src/crazy_linker_elf_loader. cpp',
21 '<(DEPTH)/third_party/crazy_linker/crazy_linker/src/crazy_linker_elf_relocat ions.cpp',
22 '<(DEPTH)/third_party/crazy_linker/crazy_linker/src/crazy_linker_elf_relro.c pp',
23 '<(DEPTH)/third_party/crazy_linker/crazy_linker/src/crazy_linker_elf_symbols .cpp',
24 '<(DEPTH)/third_party/crazy_linker/crazy_linker/src/crazy_linker_elf_view.cp p',
25 '<(DEPTH)/third_party/crazy_linker/crazy_linker/src/crazy_linker_error.cpp',
26 '<(DEPTH)/third_party/crazy_linker/crazy_linker/src/crazy_linker_globals.cpp ',
27 '<(DEPTH)/third_party/crazy_linker/crazy_linker/src/crazy_linker_library_lis t.cpp',
28 '<(DEPTH)/third_party/crazy_linker/crazy_linker/src/crazy_linker_library_vie w.cpp',
29 '<(DEPTH)/third_party/crazy_linker/crazy_linker/src/crazy_linker_line_reader .cpp',
30 '<(DEPTH)/third_party/crazy_linker/crazy_linker/src/crazy_linker_proc_maps.c pp',
31 '<(DEPTH)/third_party/crazy_linker/crazy_linker/src/crazy_linker_rdebug.cpp' ,
32 '<(DEPTH)/third_party/crazy_linker/crazy_linker/src/crazy_linker_search_path _list.cpp',
33 '<(DEPTH)/third_party/crazy_linker/crazy_linker/src/crazy_linker_shared_libr ary.cpp',
34 '<(DEPTH)/third_party/crazy_linker/crazy_linker/src/crazy_linker_system.cpp' ,
35 '<(DEPTH)/third_party/crazy_linker/crazy_linker/src/crazy_linker_thread.cpp' ,
36 '<(DEPTH)/third_party/crazy_linker/crazy_linker/src/crazy_linker_util.cpp',
37 '<(DEPTH)/third_party/crazy_linker/crazy_linker/src/crazy_linker_wrappers.cp p',
38 '<(DEPTH)/third_party/crazy_linker/crazy_linker/src/linker_phdr.cpp',
39 ],
40 'link_settings': {
41 'libraries': [
42 '-llog',
43 '-ldl',
44 ],
45 },
46 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698