Suppress the use of thin archives with android-targeting builds since they break ndk-build.

BUG=webrtc:950


Review URL: https://chromiumcodereview.appspot.com/11419139

git-svn-id: http://src.chromium.org/svn/trunk/src/build@169382 4ff67af0-8c30-449e-8e8b-ad334ec8d88c
This commit is contained in:
fischman@chromium.org 2012-11-24 03:35:25 +00:00
Родитель e29d41125c
Коммит 721b26b902
1 изменённых файлов: 10 добавлений и 0 удалений

Просмотреть файл

@ -2615,6 +2615,16 @@
], ],
}], }],
], ],
'target_conditions': [
# ndk-build copies .a's around the filesystem, breaking
# relative paths in thin archives. Disable using thin
# archives to avoid problems until one of these is fixed:
# http://code.google.com/p/android/issues/detail?id=40302
# http://code.google.com/p/android/issues/detail?id=40303
['_type=="static_library"', {
'standalone_static_library': 1,
}],
],
}], }],
], ],
}], }],