57
|
1 |
@rem
|
|
2 |
@rem Copyright (c) 2009 Nokia Corporation and/or its subsidiary(-ies).
|
|
3 |
@rem All rights reserved.
|
|
4 |
@rem This component and the accompanying materials are made available
|
|
5 |
@rem under the terms of "Eclipse Public License v1.0"
|
|
6 |
@rem which accompanies this distribution, and is available
|
|
7 |
@rem at the URL "http://www.eclipse.org/legal/epl-v10.html".
|
|
8 |
@rem
|
|
9 |
@rem Initial Contributors:
|
|
10 |
@rem Nokia Corporation - initial contribution.
|
|
11 |
@rem
|
|
12 |
@rem Contributors:
|
|
13 |
@rem
|
|
14 |
@rem Description:
|
|
15 |
@rem
|
|
16 |
@echo off
|
|
17 |
|
|
18 |
echo ----------------------------------------
|
|
19 |
echo CLEAN VIDEOUTILS
|
|
20 |
echo ----------------------------------------
|
|
21 |
|
|
22 |
pushd \VideoApp_Domain\videoutils\group
|
|
23 |
call bldmake bldfiles
|
|
24 |
call abld reallyclean
|
|
25 |
popd
|
|
26 |
|
|
27 |
echo ----------------------------------------
|
|
28 |
echo CLEAN VIDEOPLAYER
|
|
29 |
echo ----------------------------------------
|
|
30 |
|
|
31 |
pushd \VideoApp_Domain\videoplayer\group
|
|
32 |
call bldmake bldfiles
|
|
33 |
call abld reallyclean
|
|
34 |
popd
|
|
35 |
|
|
36 |
echo ----------------------------------------
|
|
37 |
echo CLEAN VIDEOUTILS/TSRC
|
|
38 |
echo ----------------------------------------
|
|
39 |
|
|
40 |
pushd \VideoApp_Domain\videoutils\tsrc\group
|
|
41 |
call bldmake bldfiles
|
|
42 |
call abld test reallyclean
|
|
43 |
popd
|
|
44 |
|
|
45 |
echo ----------------------------------------
|
|
46 |
echo CLEAN VIDEOPLAYER/TSRC
|
|
47 |
echo ----------------------------------------
|
|
48 |
|
|
49 |
pushd \VideoApp_Domain\videoplayer\tsrc\group
|
|
50 |
call bldmake bldfiles
|
|
51 |
call abld test reallyclean
|
|
52 |
popd
|
|
53 |
|
|
54 |
echo ----------------------------------------
|
|
55 |
echo CLEAN VIDEOPLAYER UNIT TESTS
|
|
56 |
echo ----------------------------------------
|
|
57 |
|
|
58 |
call pushd \VideoApp_Domain\videoplayer\videoplayback\videohelix\tsrc\ut_videohelixtest\group
|
|
59 |
call bldmake bldfiles
|
|
60 |
call abld test reallyclean
|
|
61 |
call popd
|
|
62 |
|
|
63 |
call pushd \VideoApp_Domain\videoplayer\videoplayback\videoplaybackcontrols\tsrc\videoplaybackcontrols_test\group
|
|
64 |
call bldmake bldfiles
|
|
65 |
call abld test reallyclean
|
|
66 |
call popd
|
|
67 |
|
|
68 |
call pushd \VideoApp_Domain\videoplayer\videoplayback\videoplaybackviews\tsrc\ut_userinputhandlertest\group
|
|
69 |
call bldmake bldfiles
|
|
70 |
call abld test reallyclean
|
|
71 |
call popd
|
|
72 |
|
|
73 |
call pushd \VideoApp_Domain\videoplayer\videoplayerapp\mpxvideoplayer\tsrc\ut_mpxvideoplayertest\group
|
|
74 |
call bldmake bldfiles
|
|
75 |
call abld test reallyclean
|
|
76 |
call popd |