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

Unified Diff: build/config/android/config.gni

Issue 571953002: android_webview: Build against NDK prebuilts, not system libraries. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Fix library link order on arm64 Created 6 years, 2 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 | « build/common.gypi ('k') | build/config/compiler/BUILD.gn » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: build/config/android/config.gni
diff --git a/build/config/android/config.gni b/build/config/android/config.gni
index a8701fb9ae1e77b72724342c34a3354b5c722160..82f83463fdd8b22ef5ef918d70ac3dafa0d2be84 100644
--- a/build/config/android/config.gni
+++ b/build/config/android/config.gni
@@ -119,11 +119,7 @@ if (is_android) {
# stlport stuff --------------------------------------------------------------
- use_system_stlport = is_android_webview_build
-
- if (use_system_stlport) {
- android_stlport_library = "stlport"
- } else if (component_mode == "shared_library") {
+ if (component_mode == "shared_library") {
android_stlport_library = "stlport_shared"
} else {
android_stlport_library = "stlport_static"
@@ -149,5 +145,4 @@ if (is_android) {
if (!defined(is_android_webview_build)) {
is_android_webview_build = false
}
- use_system_stlport = false
}
« no previous file with comments | « build/common.gypi ('k') | build/config/compiler/BUILD.gn » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698