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

Unified Diff: build/common.gypi

Issue 14993005: Fix static libraries will not be copied to product out directory issue on x86 Android (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 7 years, 7 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 | « no previous file | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: build/common.gypi
diff --git a/build/common.gypi b/build/common.gypi
index 915d173fc3e2fb9c2e116ef8f712abed045d94eb..9e40a8ff30ed456a600d127db1c29ab48069d849 100644
--- a/build/common.gypi
+++ b/build/common.gypi
@@ -2980,16 +2980,6 @@
],
}],
],
- '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,
- }],
- ],
}],
],
}],
@@ -3620,6 +3610,14 @@
}],
],
}],
+ # 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,
+ }],
],
}],
# Settings for building host targets using the system toolchain.
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698