buildframework/helium/tools/uda/uda.ant.xml
changeset 1 be27ed110b50
child 179 d8ac696cc51f
equal deleted inserted replaced
0:044383f39525 1:be27ed110b50
       
     1 <?xml version="1.0" encoding="UTF-8"?>
       
     2 <!-- 
       
     3 ============================================================================ 
       
     4 Name        : uda.ant.xml 
       
     5 Part of     : Helium 
       
     6 
       
     7 Copyright (c) 2009 Nokia Corporation and/or its subsidiary(-ies).
       
     8 All rights reserved.
       
     9 This component and the accompanying materials are made available
       
    10 under the terms of the License "Eclipse Public License v1.0"
       
    11 which accompanies this distribution, and is available
       
    12 at the URL "http://www.eclipse.org/legal/epl-v10.html".
       
    13 
       
    14 Initial Contributors:
       
    15 Nokia Corporation - initial contribution.
       
    16 
       
    17 Contributors:
       
    18 
       
    19 Description:
       
    20 
       
    21 ============================================================================
       
    22 -->
       
    23 <project name="uda" xmlns:hlm="http://www.nokia.com/helium">
       
    24     <description>
       
    25         UDA image creation.
       
    26     </description>
       
    27     <property name="uda.makefile.target" value="uda_roms" />
       
    28 
       
    29 
       
    30     <!-- Creates uda rom images according to configuration -->
       
    31     <target name="uda-roms" depends="rombuild-create-makefile">
       
    32         <!-- get product path -->
       
    33         <record name="${build.log.dir}/${build.id}_uda.log" action="start" />
       
    34         <for list="${product.list}" delimiter="," param="product.name">
       
    35             <sequential>
       
    36                 <hlm:rombuildImakerMacro product="@{product.name}" target="${uda.makefile.target}" />
       
    37             </sequential>
       
    38         </for>
       
    39         <record name="${build.log.dir}/${build.id}_uda.log" action="stop" />
       
    40         <hlm:metadatarecord database="${metadata.dbfile}">
       
    41             <hlm:textmetadatainput>
       
    42                 <fileset casesensitive="false" file="${build.log.dir}/${build.id}_uda.log" />
       
    43                 <metadatafilterset refid="filterset.uda.roms" />
       
    44             </hlm:textmetadatainput>
       
    45         </hlm:metadatarecord>
       
    46         <hlm:generateBuildStatus file="${build.id}_uda.log" />
       
    47         <!-- Todo: metadata: insert assertions for metadata parsing here -->
       
    48     </target>
       
    49 
       
    50     <!-- Toplevel target for UDA image creation process.
       
    51        <deprecated>Please move to iMaker.</deprecated>
       
    52      -->
       
    53     <target name="uda" depends="uda-roms" />
       
    54 
       
    55 
       
    56 </project>