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

Unified Diff: third_party/go/src/golang.org/x/mobile/bind/java/test.bash

Issue 1275153002: Remove third_party/golang.org/x/mobile as it is no longer used with Go 1.5. (Closed) Base URL: https://github.com/domokit/mojo.git@master
Patch Set: Remove golang.org/x/mobile Created 5 years, 4 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
Index: third_party/go/src/golang.org/x/mobile/bind/java/test.bash
diff --git a/third_party/go/src/golang.org/x/mobile/bind/java/test.bash b/third_party/go/src/golang.org/x/mobile/bind/java/test.bash
deleted file mode 100755
index 6c1944a7b32b9e13636c5020a2aec2228012f2f1..0000000000000000000000000000000000000000
--- a/third_party/go/src/golang.org/x/mobile/bind/java/test.bash
+++ /dev/null
@@ -1,69 +0,0 @@
-#!/usr/bin/env bash
-# Copyright 2014 The Go Authors. All rights reserved.
-# Use of this source code is governed by a BSD-style
-# license that can be found in the LICENSE file.
-
-set -e
-
-function die() {
- echo "FAIL: $1"
- exit 1
-}
-
-if [ ! -f test.bash ]; then
- die 'test.bash must be run from $GOPATH/src/golang.org/x/mobile/bind/java'
-fi
-
-function cleanup() {
- rm -rf "$ANDROID_APP"
-}
-
-if [ -z "$TMPDIR" ]; then
- TMPDIR="/tmp"
-fi
-
-if [ -z "$ANDROID_APP" ]; then
- ANDROID_APP=`mktemp -d ${TMPDIR}/android-java.XXXXX` || die 'failed to create a temporary directory'
- echo "Temporary directory for test: $ANDROID_APP"
- trap cleanup EXIT
-fi
-
-# Create an android project for test.
-# TODO(hyangah): use android update lib-project if the $ANDROID_APP directory
-# already exists.
-android create lib-project -n BindJavaTest \
- -t "android-19" -p $ANDROID_APP -k go.testpkg -g -v 0.12.+
-
-# Add the necessary Java source files (Seq.java and app/Go.java)) in to the
-# project directory. (go package)
-mkdir -p $ANDROID_APP/src/main/java/go
-ln -sf $PWD/Seq.java $ANDROID_APP/src/main/java/go
-ln -sf $PWD/../../app/*.java $ANDROID_APP/src/main/java/go
-
-# Add the testpkg java file (output of gobind -lang=java) necessary for SeqTest.java.
-mkdir -p $ANDROID_APP/src/main/java/go/testpkg
-ln -sf $PWD/testpkg/Testpkg.java $ANDROID_APP/src/main/java/go/testpkg
-
-# Add the compiled jni shared library under src/main/jniLibs/armeabi directory.
-mkdir -p $ANDROID_APP/src/main/jniLibs/armeabi
-CGO_ENABLED=1 GOOS=android GOARCH=arm GOARM=7 \
- go build -ldflags="-shared" \
- -o $ANDROID_APP/src/main/jniLibs/armeabi/libgojni.so \
- javatest.go
-
-# Add the test file under androidTest directory.
-mkdir -p $ANDROID_APP/src/androidTest/java/go
-ln -sf $PWD/SeqTest.java $ANDROID_APP/src/androidTest/java/go
-
-# Build the test apk. ($ANDROID_APP/build/outputs/apk).
-cd $ANDROID_APP
-
-# If there is no connected device, this will fail after creating the test apk.
-# The apk is located in $ANDROID_APP/build/outputs/apk directory.
-./gradlew connectedAndroidTest && echo "PASS" && exit 0
-
-# TODO(hyangah): copy the gradle's test output directory in case of test failure?
-
-# TODO(hyangah): gradlew build
-# Currently build fails due to a lint error. Disable lint check or
-# specify the minSdkVersion in gradle.build to avoid the lint error.

Powered by Google App Engine
This is Rietveld 408576698