26
|
1 |
<!--
|
|
2 |
Copyright (c) 2008 Nokia. All rights reserved.
|
|
3 |
|
|
4 |
This material, including documentation and any related computer programs,
|
|
5 |
is protected by copyright controlled by Nokia. All rights are reserved.
|
|
6 |
Copying, including reproducing, storing, adapting or translating,
|
|
7 |
any or all of this material requires the prior written consent of Nokia.
|
|
8 |
This material also contains confidential information, which may not be
|
|
9 |
disclosed to others without the prior written consent of Nokia.
|
|
10 |
-->
|
|
11 |
|
|
12 |
<project name="javabroadcast" default="deploy" basedir=".">
|
|
13 |
<description>
|
|
14 |
Builds broadcast stub
|
|
15 |
</description>
|
|
16 |
|
|
17 |
<import file="../../../build/utilities.xml"/>
|
|
18 |
|
|
19 |
<!-- If there is no ../javasrc then this component is variated away from
|
|
20 |
current release, and nothing is compiled. The component is kept so
|
|
21 |
that no other places need to be varied except the sources. -->
|
|
22 |
<available property="sources.exist" file="../javasrc" />
|
|
23 |
<target name="compile" if="sources.exist">
|
|
24 |
<omj.javac />
|
|
25 |
</target>
|
|
26 |
|
|
27 |
<!-- Needed by the utilities.xml. See the description form the utilities.xml file -->
|
|
28 |
|
|
29 |
<target name="system.properties">
|
|
30 |
<properties>
|
|
31 |
microedition.broadcast.version=1.0
|
|
32 |
</properties>
|
|
33 |
</target>
|
|
34 |
|
|
35 |
<target name="create.public.api.jar">
|
|
36 |
<omj.public.apis includes="javax/microedition/broadcast/UnsupportedOperationException.class,
|
|
37 |
javax/microedition/broadcast/BroadcastServiceException.class,
|
|
38 |
javax/microedition/broadcast/InsufficientResourcesException.class,
|
|
39 |
javax/microedition/broadcast/ServiceComponent.class,
|
|
40 |
javax/microedition/broadcast/ServiceContext.class,
|
|
41 |
javax/microedition/broadcast/ServiceContextListener.class,
|
|
42 |
javax/microedition/broadcast/connection/BroadcastConnection.class,
|
|
43 |
javax/microedition/broadcast/connection/BroadcastConnectionListener.class,
|
|
44 |
javax/microedition/broadcast/connection/BroadcastDatagramConnection.class,
|
|
45 |
javax/microedition/broadcast/connection/BroadcastFileConnection.class,
|
|
46 |
javax/microedition/broadcast/control/NTPTimeControl.class,
|
|
47 |
javax/microedition/broadcast/control/TimeShiftControl.class,
|
|
48 |
javax/microedition/broadcast/control/TimerEventsControl.class,
|
|
49 |
javax/microedition/broadcast/esg/Attribute.class,
|
|
50 |
javax/microedition/broadcast/esg/BooleanAttribute.class,
|
|
51 |
javax/microedition/broadcast/esg/CommonMetadataSet.class,
|
|
52 |
javax/microedition/broadcast/esg/DataUnavailableException.class,
|
|
53 |
javax/microedition/broadcast/esg/DateAttribute.class,
|
|
54 |
javax/microedition/broadcast/esg/MetadataSet.class,
|
|
55 |
javax/microedition/broadcast/esg/NumericAttribute.class,
|
|
56 |
javax/microedition/broadcast/esg/ObjectAttribute.class,
|
|
57 |
javax/microedition/broadcast/esg/ProgramEvent.class,
|
|
58 |
javax/microedition/broadcast/esg/Query.class,
|
|
59 |
javax/microedition/broadcast/esg/QueryComposer.class,
|
|
60 |
javax/microedition/broadcast/esg/QueryException.class,
|
|
61 |
javax/microedition/broadcast/esg/Service.class,
|
|
62 |
javax/microedition/broadcast/esg/ServiceGuide.class,
|
|
63 |
javax/microedition/broadcast/esg/ServiceGuideData.class,
|
|
64 |
javax/microedition/broadcast/esg/ServiceGuideListener.class,
|
|
65 |
javax/microedition/broadcast/esg/StringAttribute.class,
|
|
66 |
javax/microedition/broadcast/platform/PlatformProvider.class,
|
|
67 |
javax/microedition/broadcast/platform/PlatformProviderSelector.class,
|
|
68 |
javax/microedition/broadcast/platform/PlatformProviderSelectorListener.class,
|
|
69 |
javax/microedition/broadcast/purchase/PriceOption.class,
|
|
70 |
javax/microedition/broadcast/purchase/PurchaseListener.class,
|
|
71 |
javax/microedition/broadcast/purchase/PurchaseObject.class,
|
|
72 |
javax/microedition/broadcast/purchase/SubscriptionManager.class,
|
|
73 |
javax/microedition/broadcast/recording/Recording.class,
|
|
74 |
javax/microedition/broadcast/recording/RecordingScheduler.class,
|
|
75 |
javax/microedition/broadcast/recording/RecordingSchedulerListener.class,
|
|
76 |
"/>
|
|
77 |
</target>
|
|
78 |
|
|
79 |
</project>
|
|
80 |
|