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

Side by Side Diff: third_party/android_crazy_linker/crazy_linker.gyp

Issue 330253003: Use the local crazy_linker source fork in place of the NDK. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 6 years, 6 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
« no previous file with comments | « base/base.gyp ('k') | no next file » | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
(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 }
OLDNEW
« no previous file with comments | « base/base.gyp ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698