1#!/bin/bash 2# 3# Copyright (C) 2015 The Android Open Source Project 4# 5# Licensed under the Apache License, Version 2.0 (the "License"); 6# you may not use this file except in compliance with the License. 7# You may obtain a copy of the License at 8# 9# http://www.apache.org/licenses/LICENSE-2.0 10# 11# Unless required by applicable law or agreed to in writing, software 12# distributed under the License is distributed on an "AS IS" BASIS, 13# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 14# See the License for the specific language governing permissions and 15# limitations under the License. 16 17# Stop if something fails. 18set -e 19 20# We can't use src-ex testing infrastructure because src and src-ex are compiled 21# with javac independetely and can't share code (without reflection). 22 23mkdir classes 24${JAVAC} -d classes `find src -name '*.java'` 25 26mkdir classes-ex 27mv classes/UnresolvedClass.class classes-ex 28 29if [ ${USE_JACK} = "true" ]; then 30 jar cf classes.jill.jar -C classes . 31 jar cf classes-ex.jill.jar -C classes-ex . 32 33 ${JACK} --import classes.jill.jar --output-dex . 34 zip $TEST_NAME.jar classes.dex 35 ${JACK} --import classes-ex.jill.jar --output-dex . 36 zip ${TEST_NAME}-ex.jar classes.dex 37else 38 if [ ${NEED_DEX} = "true" ]; then 39 ${DX} -JXmx256m --debug --dex --dump-to=classes.lst --output=classes.dex --dump-width=1000 classes 40 zip $TEST_NAME.jar classes.dex 41 ${DX} -JXmx256m --debug --dex --dump-to=classes-ex.lst --output=classes.dex --dump-width=1000 classes-ex 42 zip ${TEST_NAME}-ex.jar classes.dex 43 fi 44fi 45