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

Unified 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 side-by-side diff with in-line comments
Download patch
Index: third_party/crazy_linker/crazy_linker.gypi
diff --git a/third_party/crazy_linker/crazy_linker.gypi b/third_party/crazy_linker/crazy_linker.gypi
new file mode 100644
index 0000000000000000000000000000000000000000..2963707b0a4daa70ccdca8955034c857a084bfaf
--- /dev/null
+++ b/third_party/crazy_linker/crazy_linker.gypi
@@ -0,0 +1,43 @@
+# Copyright (c) 2013 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.
+
+# This is a GYP include file that contains directives to build the
+# crazy_linker sources as part of another target.
+
+{
+ 'include_dirs': [
+ '<(DEPTH)/third_party/crazy_linker/crazy_linker/include',
+ '<(DEPTH)/third_party/crazy_linker/crazy_linker/src',
+ ],
+ 'defines': [
+ 'CRAZY_DEBUG=0',
+ ],
+ 'sources': [
+ '<(DEPTH)/third_party/crazy_linker/crazy_linker/src/crazy_linker_api.cpp',
+ '<(DEPTH)/third_party/crazy_linker/crazy_linker/src/crazy_linker_ashmem.cpp',
+ '<(DEPTH)/third_party/crazy_linker/crazy_linker/src/crazy_linker_debug.cpp',
+ '<(DEPTH)/third_party/crazy_linker/crazy_linker/src/crazy_linker_elf_loader.cpp',
+ '<(DEPTH)/third_party/crazy_linker/crazy_linker/src/crazy_linker_elf_relocator.cpp',
+ '<(DEPTH)/third_party/crazy_linker/crazy_linker/src/crazy_linker_error.cpp',
+ '<(DEPTH)/third_party/crazy_linker/crazy_linker/src/crazy_linker_globals.cpp',
+ '<(DEPTH)/third_party/crazy_linker/crazy_linker/src/crazy_linker_library_list.cpp',
+ '<(DEPTH)/third_party/crazy_linker/crazy_linker/src/crazy_linker_library_view.cpp',
+ '<(DEPTH)/third_party/crazy_linker/crazy_linker/src/crazy_linker_line_reader.cpp',
+ '<(DEPTH)/third_party/crazy_linker/crazy_linker/src/crazy_linker_proc_maps.cpp',
+ '<(DEPTH)/third_party/crazy_linker/crazy_linker/src/crazy_linker_rdebug.cpp',
+ '<(DEPTH)/third_party/crazy_linker/crazy_linker/src/crazy_linker_search_path_list.cpp',
+ '<(DEPTH)/third_party/crazy_linker/crazy_linker/src/crazy_linker_shared_library.cpp',
+ '<(DEPTH)/third_party/crazy_linker/crazy_linker/src/crazy_linker_system.cpp',
+ '<(DEPTH)/third_party/crazy_linker/crazy_linker/src/crazy_linker_thread.cpp',
+ '<(DEPTH)/third_party/crazy_linker/crazy_linker/src/crazy_linker_util.cpp',
+ '<(DEPTH)/third_party/crazy_linker/crazy_linker/src/crazy_linker_wrappers.cpp',
+ '<(DEPTH)/third_party/crazy_linker/crazy_linker/src/linker_phdr.cpp',
+ ],
+ 'link_settings': {
+ 'libraries': [
+ '-llog',
+ '-ldl',
+ ],
+ },
+}

Powered by Google App Engine
This is Rietveld 408576698