[Android] add ChromeOS build
Thomas Guillem
git at videolan.org
Tue Feb 17 18:38:43 CET 2015
vlc-ports/android | branch: master | Thomas Guillem <thomas at gllm.fr> | Tue Feb 17 18:37:36 2015 +0100| [6fbe1773948d424802d9e4a50a3770017584ac73] | committer: Thomas Guillem
add ChromeOS build
> http://git.videolan.org/gitweb.cgi/vlc-ports/android.git/?a=commit;h=6fbe1773948d424802d9e4a50a3770017584ac73
---
compile.sh | 6 ++++++
1 file changed, 6 insertions(+)
diff --git a/compile.sh b/compile.sh
index 608b32e..e8a973e 100755
--- a/compile.sh
+++ b/compile.sh
@@ -16,6 +16,7 @@ while [ $# -gt 0 ]; do
echo "Use --release to build in release mode"
echo "Use -s to set your keystore file and -p for the password"
echo "Use -t to get an AndroidTv build"
+ echo "Use -c to get a ChromeOS build"
exit 0
;;
a|-a)
@@ -25,6 +26,9 @@ while [ $# -gt 0 ]; do
-t)
ANDROID_TV=1
;;
+ -c)
+ CHROME_OS=1
+ ;;
-r|release|--release)
RELEASE=1
;;
@@ -167,6 +171,8 @@ if [ "$RELEASE" = 1 ]; then
fi
if [ "$ANDROID_TV" = 1 ]; then
PLATFORM="Tv"
+elif [ "$CHROME_OS" = 1 ]; then
+ PLATFORM="Chrome"
fi
if [ "$ANDROID_ABI" = "armeabi-v5" ]; then
More information about the Android
mailing list