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

Unified Diff: tools/android_link.py

Issue 863173003: Fixes for updated third_party/android_tools. (Closed) Base URL: http://dart.googlecode.com/svn/branches/bleeding_edge/dart/
Patch Set: Created 5 years, 11 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 | « runtime/vm/signal_handler.h ('k') | tools/gyp/configurations_android.gypi » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: tools/android_link.py
===================================================================
--- tools/android_link.py (revision 43137)
+++ tools/android_link.py (working copy)
@@ -108,16 +108,15 @@
# Set up the path to the system root directory, which is where we'll find the
# Android specific system includes and libraries.
android_ndk_sysroot = os.path.join(android_ndk_root,
- 'platforms', 'android-L', 'arch-arm')
+ 'platforms', 'android-14', 'arch-arm')
if target_arch == 'arm64':
android_ndk_sysroot = os.path.join(android_ndk_root,
- 'platforms', 'android-L', 'arch-arm64')
+ 'platforms', 'android-21', 'arch-arm64')
if target_arch == 'ia32':
android_ndk_sysroot = os.path.join(android_ndk_root,
- 'platforms', 'android-L', 'arch-x86')
+ 'platforms', 'android-14', 'arch-x86')
CheckDirExists(android_ndk_sysroot, 'Android sysroot')
android_ndk_lib = os.path.join(android_ndk_sysroot,'usr','lib')
- android_ndk_include = os.path.join(android_ndk_sysroot, 'usr', 'include')
crtend_android = os.path.join(android_ndk_lib, 'crtend_android.o')
if link_target == 'target':
« no previous file with comments | « runtime/vm/signal_handler.h ('k') | tools/gyp/configurations_android.gypi » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698