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

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: Remove findbugs issues. 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 or.cpp',
22 '<(DEPTH)/third_party/crazy_linker/crazy_linker/src/crazy_linker_error.cpp',
23 '<(DEPTH)/third_party/crazy_linker/crazy_linker/src/crazy_linker_globals.cpp ',
24 '<(DEPTH)/third_party/crazy_linker/crazy_linker/src/crazy_linker_library_lis t.cpp',
25 '<(DEPTH)/third_party/crazy_linker/crazy_linker/src/crazy_linker_library_vie w.cpp',
26 '<(DEPTH)/third_party/crazy_linker/crazy_linker/src/crazy_linker_line_reader .cpp',
27 '<(DEPTH)/third_party/crazy_linker/crazy_linker/src/crazy_linker_proc_maps.c pp',
28 '<(DEPTH)/third_party/crazy_linker/crazy_linker/src/crazy_linker_rdebug.cpp' ,
29 '<(DEPTH)/third_party/crazy_linker/crazy_linker/src/crazy_linker_search_path _list.cpp',
30 '<(DEPTH)/third_party/crazy_linker/crazy_linker/src/crazy_linker_shared_libr ary.cpp',
31 '<(DEPTH)/third_party/crazy_linker/crazy_linker/src/crazy_linker_system.cpp' ,
32 '<(DEPTH)/third_party/crazy_linker/crazy_linker/src/crazy_linker_thread.cpp' ,
33 '<(DEPTH)/third_party/crazy_linker/crazy_linker/src/crazy_linker_util.cpp',
34 '<(DEPTH)/third_party/crazy_linker/crazy_linker/src/crazy_linker_wrappers.cp p',
35 '<(DEPTH)/third_party/crazy_linker/crazy_linker/src/linker_phdr.cpp',
36 ],
37 'link_settings': {
38 'libraries': [
39 '-llog',
40 '-ldl',
41 ],
42 },
43 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698