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}/javamobilemedia/classes/first:${compile.result.root}/javautils/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="system.properties"> |
|
56 <properties> |
|
57 audio.samplerates=8000 16000 |
|
58 audio3d.simultaneouslocations=4 |
|
59 microedition.amms.version=1.1 |
|
60 supports.mediacapabilities=music audio3d |
|
61 </properties> |
|
62 </target> |
|
63 </project> |
|