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

Unified Diff: build/android.gypi

Issue 12605007: Rename android_build_type to android_webview_build. (Closed) Base URL: git://github.com/v8/v8.git@master
Patch Set: Created 7 years, 9 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/android.gypi
diff --git a/build/android.gypi b/build/android.gypi
index 2ee7cf99257a1c3ebcc2f69dec850622e03814a0..8400ab113ab3c72cd7a3059577040526dfef5458 100644
--- a/build/android.gypi
+++ b/build/android.gypi
@@ -35,9 +35,9 @@
'variables': {
'android_ndk_root%': '<!(/bin/echo -n $ANDROID_NDK_ROOT)',
'android_toolchain%': '<!(/bin/echo -n $ANDROID_TOOLCHAIN)',
- # Switch between different build types, currently only '0' is
- # supported.
- 'android_build_type%': 0,
+ # This is set when building the Android WebView inside the Android build
+ # system, using the 'android' gyp backend.
+ 'android_webview_build%': 0,
},
'conditions': [
['android_ndk_root==""', {
@@ -62,10 +62,10 @@
],
# Enable to use the system stlport, otherwise statically
# link the NDK one?
- 'use_system_stlport%': '<(android_build_type)',
+ 'use_system_stlport%': '<(android_webview_build)',
'android_stlport_library': 'stlport_static',
# Copy it out one scope.
- 'android_build_type%': '<(android_build_type)',
+ 'android_webview_build%': '<(android_webview_build)',
'OS': 'android',
}, # variables
'target_defaults': {
@@ -141,7 +141,7 @@
'-lm',
],
'conditions': [
- ['android_build_type==0', {
+ ['android_webview_build==0', {
'ldflags': [
'-Wl,-rpath-link=<(android_lib)',
'-L<(android_lib)',
« 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