blob: 2a5e7daa129ffc35d29d6f6aa16ef664db03d146 [file] [log] [blame]
Andreas Gampe2b0fa5b2014-10-31 18:12:30 -07001#!/bin/bash
2#
3# Copyright (C) 2014 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
Sebastien Hertz19ac0272015-02-24 17:39:50 +010020# All except MirandaInterface
Andreas Gampe2b0fa5b2014-10-31 18:12:30 -070021mkdir classes
Andreas Gampe2b0fa5b2014-10-31 18:12:30 -070022${JAVAC} -d classes `find src -name '*.java'`
23rm classes/MirandaInterface.class
Andreas Gampe2b0fa5b2014-10-31 18:12:30 -070024
Sebastien Hertz19ac0272015-02-24 17:39:50 +010025# Only MirandaInterface
26mkdir classes2
27${JAVAC} -d classes2 `find src -name '*.java'`
28rm classes2/Main.class classes2/MirandaAbstract.class classes2/MirandaClass*.class classes2/MirandaInterface2*.class
Andreas Gampe2b0fa5b2014-10-31 18:12:30 -070029
Sebastien Hertz19ac0272015-02-24 17:39:50 +010030if [ ${USE_JACK} = "true" ]; then
Yohann Roussel51e4d442016-01-19 17:07:18 +010031 jar cf classes.jill.jar -C classes .
32 jar cf classes2.jill.jar -C classes2 .
Sebastien Hertz19ac0272015-02-24 17:39:50 +010033
Yohann Roussel51e4d442016-01-19 17:07:18 +010034 ${JACK} --import classes.jill.jar --output-dex .
Sebastien Hertz19ac0272015-02-24 17:39:50 +010035 mv classes.dex classes-1.dex
Yohann Roussel51e4d442016-01-19 17:07:18 +010036 ${JACK} --import classes2.jill.jar --output-dex .
Sebastien Hertz19ac0272015-02-24 17:39:50 +010037 mv classes.dex classes2.dex
38 mv classes-1.dex classes.dex
39else
Søren Gjesse620d0a52016-09-19 11:12:51 +020040 if [ ${NEED_DEX} = "true" ]; then
41 # All except Main
42 ${DX} -JXmx256m --debug --dex --dump-to=classes.lst --output=classes.dex classes
Sebastien Hertz19ac0272015-02-24 17:39:50 +010043
Søren Gjesse620d0a52016-09-19 11:12:51 +020044 # Only Main
45 ${DX} -JXmx256m --debug --dex --dump-to=classes2.lst --output=classes2.dex classes2
46 fi
Sebastien Hertz19ac0272015-02-24 17:39:50 +010047fi
Søren Gjesse620d0a52016-09-19 11:12:51 +020048
49if [ ${NEED_DEX} = "true" ]; then
50 zip $TEST_NAME.jar classes.dex classes2.dex
51fi