114
|
1 |
/*
|
|
2 |
* Copyright (c) 2008 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: Build-flag definition file for HSPS R&D. Should be deleted in product.
|
|
15 |
*
|
|
16 |
*/
|
|
17 |
|
|
18 |
|
|
19 |
#ifndef __HSPS_BUILDS_HRH__
|
|
20 |
#define __HSPS_BUILDS_HRH__
|
|
21 |
|
|
22 |
#include <bldvariant.hrh>
|
|
23 |
|
|
24 |
// Define following build flag if you are building internal test builds.
|
|
25 |
// By default, should be undefined in official production builds.
|
|
26 |
#undef _hsps_INTERNAL_
|
|
27 |
|
|
28 |
// If ____HSPS_CFG_LOG_ON____ is defined, then logging is on.
|
|
29 |
// By default, should be undefined in official production builds.
|
|
30 |
#undef ____HSPS_CFG_LOG_ON____
|
|
31 |
|
|
32 |
// Controls whether access right should be eneabled.
|
|
33 |
// Thus an application can access configurations with specific uids only.
|
|
34 |
// By default, should be defined in official production builds
|
|
35 |
#undef _hsps_SECURITY_NOT_IN_USE_
|
|
36 |
|
|
37 |
// Controls whether an test application should be built.
|
|
38 |
// By default, should be undefined in official production builds.
|
|
39 |
#undef _HSPS_TESTAPP_
|
|
40 |
|
|
41 |
// Controls whether old RDebug-prints should be processed.
|
|
42 |
// By default, should be undefined in official production builds.
|
|
43 |
#undef _hsps_DEBUG_
|
|
44 |
|
|
45 |
// Controls whether performace tests should be logged
|
|
46 |
// By default, should be undefined in official production builds.
|
|
47 |
#undef _hsps_PERFORMANCE_TEST_
|
|
48 |
|
|
49 |
// Control support for detecting file changes in emulator
|
|
50 |
// By default, should be undefined in official production builds.
|
|
51 |
#undef _hsps_EMULATOR_SUPPORT_
|
|
52 |
|
|
53 |
// Define this macro to enable server shutdown. If not defined, then server
|
|
54 |
// will be up until phone is restarted.
|
|
55 |
#undef _hsps_SERVER_SHUTDOWN_ENABLED_
|
|
56 |
|
|
57 |
|
|
58 |
|
|
59 |
// ***********************************************
|
|
60 |
// Override definitions for internal test builds
|
|
61 |
// ***********************************************
|
|
62 |
#ifdef _hsps_INTERNAL_
|
|
63 |
#define ____HSPS_CFG_LOG_ON____
|
|
64 |
#define _HSPS_TESTAPP_
|
|
65 |
#define _hsps_DEBUG_
|
|
66 |
#define _hsps_SERVER_SHUTDOWN_ENABLED_
|
|
67 |
|
|
68 |
#ifdef _hsps_DEBUG_
|
|
69 |
#if defined(WINSCW) || defined(__WINS__)
|
|
70 |
#define _hsps_EMULATOR_SUPPORT_
|
|
71 |
#endif
|
|
72 |
#endif
|
|
73 |
#endif // _hsps_INTERNAL_
|
|
74 |
|
|
75 |
#endif// __HSPS_BUILDS_HRH__
|