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

Unified 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: Note the fork switch bug id in base.gyp 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 side-by-side diff with in-line comments
Download patch
« no previous file with comments | « base/base.gyp ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: third_party/android_crazy_linker/crazy_linker.gyp
diff --git a/third_party/android_crazy_linker/crazy_linker.gyp b/third_party/android_crazy_linker/crazy_linker.gyp
new file mode 100644
index 0000000000000000000000000000000000000000..7d3b75f9e64af97df87ec0197a01fd2b9e148dc7
--- /dev/null
+++ b/third_party/android_crazy_linker/crazy_linker.gyp
@@ -0,0 +1,54 @@
+# Copyright 2014 The Chromium Authors. All rights reserved.
+# Use of this source code is governed by a BSD-style license that can be
+# found in the LICENSE file.
+
+{
+ 'targets': [
+ {
+ 'target_name': 'crazy_linker',
+ 'type': 'static_library',
+ 'include_dirs': [
+ 'src/include',
+ 'src/src',
+ ],
+ 'defines': [
+ 'CRAZY_DEBUG=0',
+ ],
+ 'sources': [
+ 'src/src/crazy_linker_api.cpp',
+ 'src/src/crazy_linker_ashmem.cpp',
+ 'src/src/crazy_linker_debug.cpp',
+ 'src/src/crazy_linker_elf_loader.cpp',
+ 'src/src/crazy_linker_elf_relocations.cpp',
+ 'src/src/crazy_linker_elf_relro.cpp',
+ 'src/src/crazy_linker_elf_symbols.cpp',
+ 'src/src/crazy_linker_elf_view.cpp',
+ 'src/src/crazy_linker_error.cpp',
+ 'src/src/crazy_linker_globals.cpp',
+ 'src/src/crazy_linker_library_list.cpp',
+ 'src/src/crazy_linker_library_view.cpp',
+ 'src/src/crazy_linker_line_reader.cpp',
+ 'src/src/crazy_linker_proc_maps.cpp',
+ 'src/src/crazy_linker_rdebug.cpp',
+ 'src/src/crazy_linker_search_path_list.cpp',
+ 'src/src/crazy_linker_shared_library.cpp',
+ 'src/src/crazy_linker_system.cpp',
+ 'src/src/crazy_linker_thread.cpp',
+ 'src/src/crazy_linker_util.cpp',
+ 'src/src/crazy_linker_wrappers.cpp',
+ 'src/src/linker_phdr.cpp',
+ ],
+ 'link_settings': {
+ 'libraries': [
+ '-llog',
+ '-ldl',
+ ],
+ },
+ 'direct_dependent_settings': {
+ 'include_dirs': [
+ 'src/include',
+ ],
+ },
+ },
+ ],
+}
« 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