author | noe\swadi |
Mon, 26 Apr 2010 16:28:13 +0530 | |
changeset 3 | ebe3f8f03b59 |
parent 0 | 638b9c697799 |
child 12 | a0eee409ff14 |
permissions | -rw-r--r-- |
0 | 1 |
# |
2 |
# Copyright (c) 2007-2009 Nokia Corporation and/or its subsidiary(-ies). |
|
3 |
# All rights reserved. |
|
4 |
# This component and the accompanying materials are made available |
|
5 |
# under the terms of "Eclipse Public License v1.0" |
|
6 |
# which accompanies this distribution, and is available |
|
7 |
# at the URL "http://www.eclipse.org/legal/epl-v10.html". |
|
8 |
# |
|
9 |
# Initial Contributors: |
|
10 |
# Nokia Corporation - initial contribution. |
|
11 |
# |
|
12 |
# Contributors: |
|
13 |
# |
|
14 |
# Description: Configuration file for CDS script |
|
15 |
# |
|
16 |
||
17 |
# --- PLATFORM VERSION --- |
|
18 |
||
19 |
# This is used as in platform's xml-description as a version-id. |
|
20 |
# By default, the version string is used also in report and error log filenames. |
|
3
ebe3f8f03b59
Compatibility Analyser updated to version 2.8.4. Support for Qt code analysis added.
noe\swadi
parents:
0
diff
changeset
|
21 |
# Allowed values are: '3.0', '3.1', 3.2', '5.0', '5.1' and '5.2' |
0 | 22 |
PLATFORM_VERSION = '5.0' |
23 |
BUILD = 'wk26_2008' |
|
24 |
||
25 |
# --- REPORT FILENAME --- |
|
26 |
REPORT_FILENAME = 's60_platform_data_temp' |
|
27 |
||
28 |
# --- PLATFORM_PATHS.HRH FILE NAME AND LOCATION --- |
|
29 |
||
30 |
# Platform_paths.hrh file is searched from the following directory with the given filename. |
|
31 |
PLATFORM_PATHS_HRH_LOCATION = r'C:\Build_C\S60_5_0_200826\epoc32\include\domain\osextensions' |
|
32 |
PLATFORM_PATHS_HRH_FILE = r'platform_paths.hrh' |
|
33 |
||
34 |
# --- SUB-DIRECTORIES THAT ARE NOT SCANNED --- |
|
35 |
||
36 |
# All source code directories with following names are ignored and left out from the scan |
|
37 |
IGNORED_FOLDERS = ( |
|
38 |
'tsrc', |
|
39 |
'internal', |
|
40 |
'integtest', |
|
41 |
'test', |
|
42 |
'unittest', |
|
43 |
'inttest' |
|
44 |
) |
|
45 |
||
46 |
# --- TOOL OUTPUT DIRECTORY --- |
|
47 |
||
48 |
# --- Report, logs etc. are saved here: --- |
|
49 |
TOOL_DIR = 'C:\\TEMP' |
|
50 |
||
51 |
REPORT_FULLNAME = TOOL_DIR + '\\' + REPORT_FILENAME + '.xml' |
|
52 |
||
53 |
# --- ERROR LOG FILENAME --- |
|
54 |
ERROR_LOG_FILENAME = TOOL_DIR + '\\log\\s60_platform_' + PLATFORM_VERSION + '.log' |
|
55 |
||
56 |
# --- PROCESSOR CONFIGURATION --- |
|
57 |
ACTIVE_PROCESSORS = ( |
|
58 |
'processors.scanner', |
|
59 |
) |
|
60 |
||
61 |
# --- SCANNER CONFIGURATION --- |
|
62 |
ACTIVE_SCANNERS = ( |
|
63 |
'processors.scanners.bld_inf_scanner', |
|
64 |
'processors.scanners.mmp_scanner', |
|
65 |
'processors.scanners.src_scanner', |
|
66 |
) |
|
67 |
||
68 |
# --- SOURCE CODE PATHS --- |
|
69 |
# Tuples of (path, removed prefix) |
|
70 |
SCANNER_PATHS = ( |
|
71 |
(r'C:\Build_C\S60_5_0_200826\src', r'C:\Build_C\S60_5_0_200826'), |
|
72 |
(r'C:\Build_C\S60_5_0_200826\S60', r'C:\Build_C\S60_5_0_200826'), |
|
73 |
) |
|
74 |
||
75 |
# --- OUTPUT FILE LOCATIONS --- |
|
76 |
WARN_FILENAME = TOOL_DIR + '\\results\\warns.txt' |
|
77 |
LOG_FILENAME = TOOL_DIR + '\\results\\scanner.log' |
|
78 |
||
79 |
# --- OPTIONAL API INFO FIELD ( options 'yes' or 'no') --- |
|
80 |
API_INFO_NEEDED = 'yes' |
|
81 |
||
82 |
# --- OPTIONAL IF API INFO NEEDED, MENTION THE SDK INDEX, |
|
3
ebe3f8f03b59
Compatibility Analyser updated to version 2.8.4. Support for Qt code analysis added.
noe\swadi
parents:
0
diff
changeset
|
83 |
# --- ex: For 3.2 sdk , release_index 132 , for 5.0 release_index 155, |
ebe3f8f03b59
Compatibility Analyser updated to version 2.8.4. Support for Qt code analysis added.
noe\swadi
parents:
0
diff
changeset
|
84 |
# --- for 5.1 sdk, release_index 154 and for 5.2 release_index 150. |
ebe3f8f03b59
Compatibility Analyser updated to version 2.8.4. Support for Qt code analysis added.
noe\swadi
parents:
0
diff
changeset
|
85 |
# --- for 3.0 and 3.1 sdks, keep release index 12 |
0 | 86 |
#If not mentioned, then any release will be taken. |
87 |
#Else while generating the platform data script , we can get the updated release index from kevlar for each sdk. |
|
88 |
||
89 |
API_REL_INDX ='155' |