26
|
1 |
<!--
|
|
2 |
#
|
|
3 |
# Copyright (c) 2008-2009 Nokia Corporation and/or its subsidiary(-ies).
|
|
4 |
# All rights reserved.
|
|
5 |
# This component and the accompanying materials are made available
|
|
6 |
# under the terms of "Eclipse Public License v1.0"
|
|
7 |
# which accompanies this distribution, and is available
|
|
8 |
# at the URL "http://www.eclipse.org/legal/epl-v10.html".
|
|
9 |
#
|
|
10 |
# Initial Contributors:
|
|
11 |
# Nokia Corporation - initial contribution.
|
|
12 |
#
|
|
13 |
# Contributors:
|
|
14 |
#
|
|
15 |
# Description:
|
|
16 |
#
|
|
17 |
-->
|
|
18 |
|
|
19 |
<project name="javaamms" default="deploy" basedir=".">
|
|
20 |
|
|
21 |
<import file="../../../build/utilities.xml"/>
|
|
22 |
|
|
23 |
<!--property name="java.src.paths" value="../javasrc:../src_tuner/javasrc"/-->
|
|
24 |
<property name="java.src.paths" value="../javasrc"/>
|
|
25 |
|
|
26 |
<!-- Needed by the utilities.xml. See the description form the utilities.xml
|
|
27 |
file -->
|
|
28 |
|
|
29 |
<target name="compile">
|
|
30 |
<omj.javac classpath="${compile.result.root}/javalegacyutils/classes/collection:${compile.result.root}/javamobilemedia/classes/first"/>
|
|
31 |
</target>
|
|
32 |
|
|
33 |
<!-- Needed by the utilities.xml. See the description form the utilities.xml
|
|
34 |
file -->
|
|
35 |
<property name="javah.classnames"
|
|
36 |
value="com.nokia.amms.control.audioeffect.EqualizerControl,
|
|
37 |
com.nokia.amms.control.audioeffect.ReverbControl,
|
|
38 |
com.nokia.amms.control.audioeffect.ReverbSourceControl,
|
|
39 |
com.nokia.amms.control.audio3d.CommitControl,
|
|
40 |
com.nokia.amms.control.audio3d.DistanceAttenuationControl,
|
|
41 |
com.nokia.amms.control.audio3d.DopplerControl,
|
|
42 |
com.nokia.amms.control.audio3d.LocationControl,
|
|
43 |
com.nokia.amms.control.audio3d.OrientationControl,
|
|
44 |
com.nokia.amms.control.EffectControl,
|
|
45 |
com.nokia.amms.control.PanControl,
|
|
46 |
com.nokia.amms.control.PriorityControl,
|
|
47 |
com.nokia.mid.impl.media.AudioOutputControl,
|
|
48 |
com.nokia.amms.control.VolumeControl,
|
|
49 |
com.nokia.amms.AMMSPlugin,
|
|
50 |
com.nokia.amms.ControlContainer,
|
|
51 |
com.nokia.amms.GlobalManagerImpl,
|
|
52 |
com.nokia.amms.ModuleBase"/>
|
|
53 |
|
|
54 |
|
|
55 |
<target name="create.public.api.jar">
|
|
56 |
<omj.public.apis includes="javax/microedition/amms/**/*.class"/>
|
|
57 |
<omj.public.apis includes="com/nokia/mid/media/**/*.class"/>
|
|
58 |
</target>
|
|
59 |
|
|
60 |
<target name="system.properties">
|
|
61 |
<properties>
|
|
62 |
audio.samplerates=8000 16000
|
|
63 |
audio3d.simultaneouslocations=4
|
|
64 |
microedition.amms.version=1.1
|
|
65 |
supports.mediacapabilities=music audio3d
|
|
66 |
</properties>
|
|
67 |
</target>
|
|
68 |
|
|
69 |
</project>
|