equal
deleted
inserted
replaced
|
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="javagcf" default="deploy" basedir="."> |
|
20 <description> |
|
21 Builds Common GCF |
|
22 </description> |
|
23 |
|
24 <import file="../../../build/utilities.xml"/> |
|
25 |
|
26 <condition property="javah.classnames" |
|
27 value="com.nokia.mj.impl.gcf.utils.NativeError, |
|
28 com.nokia.mj.impl.gcf.utils.URI, |
|
29 com.nokia.mj.impl.gcf.utils.StreamConnectionBase"> |
|
30 <isset property="target.s60" /> |
|
31 </condition> |
|
32 |
|
33 <condition property="javah.classnames" |
|
34 value="com.nokia.mj.impl.gcf.utils.StreamConnectionBase"> |
|
35 <isset property="target.linux" /> |
|
36 </condition> |
|
37 |
|
38 <!-- Setting all classes to be visible to everybody --> |
|
39 <target name="create.internal.api.jar"> |
|
40 <omj.internal.apis/> |
|
41 </target> |
|
42 |
|
43 <target name="create.public.api.jar"> |
|
44 <omj.public.apis includes="javax/microedition/io/SecurityInfo.class"/> |
|
45 </target> |
|
46 |
|
47 </project> |