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) / OS_NACL | 7 // OS_WIN / OS_MACOSX / OS_LINUX / OS_POSIX (MACOSX or LINUX) / OS_NACL |
8 // Compiler: | 8 // Compiler: |
9 // COMPILER_MSVC / COMPILER_GCC | 9 // COMPILER_MSVC / COMPILER_GCC |
10 // Processor: | 10 // Processor: |
(...skipping 138 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
149 | 149 |
150 #if defined(OS_ANDROID) | 150 #if defined(OS_ANDROID) |
151 // The compiler thinks std::string::const_iterator and "const char*" are | 151 // The compiler thinks std::string::const_iterator and "const char*" are |
152 // equivalent types. | 152 // equivalent types. |
153 #define STD_STRING_ITERATOR_IS_CHAR_POINTER | 153 #define STD_STRING_ITERATOR_IS_CHAR_POINTER |
154 // The compiler thinks base::string16::const_iterator and "char16*" are | 154 // The compiler thinks base::string16::const_iterator and "char16*" are |
155 // equivalent types. | 155 // equivalent types. |
156 #define BASE_STRING16_ITERATOR_IS_CHAR16_POINTER | 156 #define BASE_STRING16_ITERATOR_IS_CHAR16_POINTER |
157 #endif | 157 #endif |
158 | 158 |
| 159 |
159 #endif // BUILD_BUILD_CONFIG_H_ | 160 #endif // BUILD_BUILD_CONFIG_H_ |
OLD | NEW |