OLD | NEW |
1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2012 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 13 matching lines...) Expand all Loading... |
24 #elif defined(__APPLE__) | 24 #elif defined(__APPLE__) |
25 #define OS_MACOSX 1 | 25 #define OS_MACOSX 1 |
26 #if defined(TARGET_OS_IPHONE) && TARGET_OS_IPHONE | 26 #if defined(TARGET_OS_IPHONE) && TARGET_OS_IPHONE |
27 #define OS_IOS 1 | 27 #define OS_IOS 1 |
28 #endif // defined(TARGET_OS_IPHONE) && TARGET_OS_IPHONE | 28 #endif // defined(TARGET_OS_IPHONE) && TARGET_OS_IPHONE |
29 #elif defined(__native_client__) | 29 #elif defined(__native_client__) |
30 #define OS_NACL 1 | 30 #define OS_NACL 1 |
31 #elif defined(__linux__) | 31 #elif defined(__linux__) |
32 #define OS_LINUX 1 | 32 #define OS_LINUX 1 |
33 // Use TOOLKIT_GTK on linux if TOOLKIT_VIEWS isn't defined. | 33 // Use TOOLKIT_GTK on linux if TOOLKIT_VIEWS isn't defined. |
34 #if !defined(TOOLKIT_VIEWS) && defined(USE_X11) && !defined(USE_AURA) | 34 #if !defined(TOOLKIT_VIEWS) && defined(USE_X11) |
35 #define TOOLKIT_GTK | 35 #define TOOLKIT_GTK |
36 #endif | 36 #endif |
37 #if defined(__GLIBC__) && !defined(__UCLIBC__) | 37 #if defined(__GLIBC__) && !defined(__UCLIBC__) |
38 // we really are using glibc, not uClibc pretending to be glibc | 38 // we really are using glibc, not uClibc pretending to be glibc |
39 #define LIBC_GLIBC | 39 #define LIBC_GLIBC |
40 #endif | 40 #endif |
41 #elif defined(_WIN32) | 41 #elif defined(_WIN32) |
42 #define OS_WIN 1 | 42 #define OS_WIN 1 |
43 #define TOOLKIT_VIEWS 1 | 43 #define TOOLKIT_VIEWS 1 |
44 #elif defined(__FreeBSD__) | 44 #elif defined(__FreeBSD__) |
(...skipping 100 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
145 #if defined(OS_ANDROID) | 145 #if defined(OS_ANDROID) |
146 // The compiler thinks std::string::const_iterator and "const char*" are | 146 // The compiler thinks std::string::const_iterator and "const char*" are |
147 // equivalent types. | 147 // equivalent types. |
148 #define STD_STRING_ITERATOR_IS_CHAR_POINTER | 148 #define STD_STRING_ITERATOR_IS_CHAR_POINTER |
149 // The compiler thinks base::string16::const_iterator and "char16*" are | 149 // The compiler thinks base::string16::const_iterator and "char16*" are |
150 // equivalent types. | 150 // equivalent types. |
151 #define BASE_STRING16_ITERATOR_IS_CHAR16_POINTER | 151 #define BASE_STRING16_ITERATOR_IS_CHAR16_POINTER |
152 #endif | 152 #endif |
153 | 153 |
154 #endif // BUILD_BUILD_CONFIG_H_ | 154 #endif // BUILD_BUILD_CONFIG_H_ |
OLD | NEW |