summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorkjellander@webrtc.org <kjellander@webrtc.org>2014-10-31 19:01:41 +0000
committerkjellander@webrtc.org <kjellander@webrtc.org>2014-10-31 19:01:41 +0000
commit3434a47882aa5e8e70a9cb6a3b57e6a549f63778 (patch)
tree297fa469a3425b092a713633d9318f27474d95d8
parent8a771f6fe46fe3d48593d19e39bb2077f3816e50 (diff)
downloadtalk-3434a47882aa5e8e70a9cb6a3b57e6a549f63778.tar.gz
Change default JVM location to /usr/lib/jvm/java-7-openjdk-amd64
Given that OpenJDK 1.7 is the recommended Java SDK for Chromium these days, we should get rid of linking to the old non-standardized link referring to a Sun Java 1.6 SDK. Instead of requiring all users to set JAVA_HOME, I prefer have the most common path as default and and close webrtc:2113 as won't fix after this is submitted. BUG=2113 R=henrike@webrtc.org Review URL: https://webrtc-codereview.appspot.com/29839004 git-svn-id: http://webrtc.googlecode.com/svn/trunk/talk@7584 4adac7df-926f-26a2-2b94-8c16560cd09d
-rw-r--r--build/common.gypi4
1 files changed, 1 insertions, 3 deletions
diff --git a/build/common.gypi b/build/common.gypi
index 7ee4224..d682381 100644
--- a/build/common.gypi
+++ b/build/common.gypi
@@ -39,9 +39,7 @@
'libpeer_target_type%': 'static_library',
'conditions': [
['OS=="android" or OS=="linux"', {
- # TODO(henrike): make sure waterfall bots have $JAVA_HOME configured
- # properly and remove the default value below. See issue 2113.
- 'java_home%': '<!(python -c "import os; dir=os.getenv(\'JAVA_HOME\', \'/usr/lib/jvm/java-6-sun\'); assert os.path.exists(os.path.join(dir, \'include/jni.h\')), \'Point \\$JAVA_HOME or the java_home gyp variable to a directory containing include/jni.h!\'; print dir")',
+ 'java_home%': '<!(python -c "import os; dir=os.getenv(\'JAVA_HOME\', \'/usr/lib/jvm/java-7-openjdk-amd64\'); assert os.path.exists(os.path.join(dir, \'include/jni.h\')), \'Point \\$JAVA_HOME or the java_home gyp variable to a directory containing include/jni.h!\'; print dir")',
}],
],
},