OLD | NEW |
1 // Copyright (c) 2006-2008 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2006-2008 The Chromium Authors. All rights reserved. |
2 // Use of this source code is governed by a BSD-style license that can be | 2 // Use of this source code is governed by a BSD-style license that can be |
3 // found in the LICENSE file. | 3 // found in the LICENSE file. |
4 | 4 |
5 // This file adds defines about the platform we're currently building on. | 5 // This file adds defines about the platform we're currently building on. |
6 // Operating System: | 6 // Operating System: |
7 // OS_WIN / OS_MACOSX / OS_LINUX / OS_POSIX (MACOSX or LINUX) | 7 // OS_WIN / OS_MACOSX / OS_LINUX / OS_POSIX (MACOSX or LINUX) |
8 // Compiler: | 8 // Compiler: |
9 // COMPILER_MSVC / COMPILER_GCC | 9 // COMPILER_MSVC / COMPILER_GCC |
10 // Processor: | 10 // Processor: |
(...skipping 47 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
58 #define OS_POSIX 1 | 58 #define OS_POSIX 1 |
59 // Use base::DataPack for name/value pairs. | 59 // Use base::DataPack for name/value pairs. |
60 #define USE_BASE_DATA_PACK 1 | 60 #define USE_BASE_DATA_PACK 1 |
61 #endif | 61 #endif |
62 | 62 |
63 // Use tcmalloc | 63 // Use tcmalloc |
64 #if (defined(OS_WIN) || defined(OS_LINUX)) && !defined(NO_TCMALLOC) | 64 #if (defined(OS_WIN) || defined(OS_LINUX)) && !defined(NO_TCMALLOC) |
65 #define USE_TCMALLOC 1 | 65 #define USE_TCMALLOC 1 |
66 #endif | 66 #endif |
67 | 67 |
| 68 // Use heapchecker. |
| 69 #if (defined(OS_WIN) || defined(OS_LINUX)) && !defined(NO_HEAPCHECKER) |
| 70 #define USE_HEAPCHECKER 1 |
| 71 #endif |
| 72 |
68 // Compiler detection. | 73 // Compiler detection. |
69 #if defined(__GNUC__) | 74 #if defined(__GNUC__) |
70 #define COMPILER_GCC 1 | 75 #define COMPILER_GCC 1 |
71 #elif defined(_MSC_VER) | 76 #elif defined(_MSC_VER) |
72 #define COMPILER_MSVC 1 | 77 #define COMPILER_MSVC 1 |
73 #else | 78 #else |
74 #error Please add support for your compiler in build/build_config.h | 79 #error Please add support for your compiler in build/build_config.h |
75 #endif | 80 #endif |
76 | 81 |
77 // Processor architecture detection. For more info on what's defined, see: | 82 // Processor architecture detection. For more info on what's defined, see: |
(...skipping 30 matching lines...) Expand all Loading... |
108 // On Posix, we'll detect short wchar_t, but projects aren't guaranteed to | 113 // On Posix, we'll detect short wchar_t, but projects aren't guaranteed to |
109 // compile in this mode (in particular, Chrome doesn't). This is intended for | 114 // compile in this mode (in particular, Chrome doesn't). This is intended for |
110 // other projects using base who manage their own dependencies and make sure | 115 // other projects using base who manage their own dependencies and make sure |
111 // short wchar works for them. | 116 // short wchar works for them. |
112 #define WCHAR_T_IS_UTF16 | 117 #define WCHAR_T_IS_UTF16 |
113 #else | 118 #else |
114 #error Please add support for your compiler in build/build_config.h | 119 #error Please add support for your compiler in build/build_config.h |
115 #endif | 120 #endif |
116 | 121 |
117 #endif // BUILD_BUILD_CONFIG_H_ | 122 #endif // BUILD_BUILD_CONFIG_H_ |
OLD | NEW |