Chromium Code Reviews| Index: build/android.gypi |
| diff --git a/build/android.gypi b/build/android.gypi |
| index 5d3b25a74636ca4b8bf430b94a7835673dd49dc4..98dc7950c459e485ed77a2384e36d6cb8cd68359 100644 |
| --- a/build/android.gypi |
| +++ b/build/android.gypi |
| @@ -52,7 +52,13 @@ |
| 'android_stlport': '<(android_ndk_root)/sources/cxx-stl/stlport/', |
| }, |
| 'android_include': '<(android_sysroot)/usr/include', |
| - 'android_lib': '<(android_sysroot)/usr/lib', |
| + 'conditions': [ |
| + ['target_arch=="x64"', { |
|
Jakob Kummerow
2015/03/04 11:19:35
doesn't "arm64" need to be included in this list?
Weiliang
2015/03/05 03:22:36
From android-ndk, arm64 does not need to be includ
|
| + 'android_lib': '<(android_sysroot)/usr/lib64', |
| + }, { |
| + 'android_lib': '<(android_sysroot)/usr/lib', |
| + }], |
| + ], |
| 'android_stlport_include': '<(android_stlport)/stlport', |
| 'android_stlport_libs': '<(android_stlport)/libs', |
| }], |