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

Unified Diff: build/android/envsetup.sh

Issue 8523029: Ensure that WebKit can use envsetup.sh (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Prefer -n over negated -z Created 9 years, 1 month 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/envsetup.sh
diff --git a/build/android/envsetup.sh b/build/android/envsetup.sh
index 1f0e986c11adfd2eac7a62d040648eeedc428d00..ae149a901f51366fa11369cc375837550ce39d79 100644
--- a/build/android/envsetup.sh
+++ b/build/android/envsetup.sh
@@ -75,7 +75,8 @@ make() {
use_ccache_var=""
fi
fi
- if [ -f "$PWD/build/android/envsetup.sh" ]; then
+ if [ -f "$PWD/build/android/envsetup.sh" ] ||
+ [ -n "${WEBKIT_ANDROID_BUILD}" ]; then
John Grabowski 2011/11/16 19:40:21 This needs doc or an explanation of some kind.
CC="${use_ccache_var}${CROSS_CC}" CXX="${use_ccache_var}${CROSS_CXX}" \
LINK="${CROSS_LINK}" AR="${CROSS_AR}" RANLIB="${CROSS_RANLIB}" \
command make $*
@@ -113,6 +114,7 @@ DEFINES+=" disable_nacl=1"
DEFINES+=" remoting=0"
DEFINES+=" p2p_apis=0"
DEFINES+=" enable_touch_events=1"
+DEFINES+=" build_ffmpegsumo=0"
# TODO(bulach): use "shared_libraries" once the transition from executable
# is over.
DEFINES+=" gtest_target_type=executable"
« 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