Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(231)

Side by Side Diff: build/build_config.h

Issue 881213004: Support building BoringSSL with NSS certificates. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 5 years, 10 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
« no previous file with comments | « no previous file | build/common.gypi » ('j') | build/linux/system.gyp » ('J')
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
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 // OS_NACL (NACL_SFI or NACL_NONSFI) / OS_NACL_SFI / OS_NACL_NONSFI 8 // OS_NACL (NACL_SFI or NACL_NONSFI) / OS_NACL_SFI / OS_NACL_NONSFI
9 // Compiler: 9 // Compiler:
10 // COMPILER_MSVC / COMPILER_GCC 10 // COMPILER_MSVC / COMPILER_GCC
(...skipping 43 matching lines...) Expand 10 before | Expand all | Expand 10 after
54 #elif defined(__OpenBSD__) 54 #elif defined(__OpenBSD__)
55 #define OS_OPENBSD 1 55 #define OS_OPENBSD 1
56 #elif defined(__sun) 56 #elif defined(__sun)
57 #define OS_SOLARIS 1 57 #define OS_SOLARIS 1
58 #elif defined(__QNXNTO__) 58 #elif defined(__QNXNTO__)
59 #define OS_QNX 1 59 #define OS_QNX 1
60 #else 60 #else
61 #error Please add support for your platform in build/build_config.h 61 #error Please add support for your platform in build/build_config.h
62 #endif 62 #endif
63 63
64 #if defined(USE_OPENSSL) && defined(USE_NSS)
65 #error Cannot use both OpenSSL and NSS
66 #endif
67
68 // For access to standard BSD features, use OS_BSD instead of a 64 // For access to standard BSD features, use OS_BSD instead of a
69 // more specific macro. 65 // more specific macro.
70 #if defined(OS_FREEBSD) || defined(OS_OPENBSD) 66 #if defined(OS_FREEBSD) || defined(OS_OPENBSD)
71 #define OS_BSD 1 67 #define OS_BSD 1
72 #endif 68 #endif
73 69
74 // For access to standard POSIXish features, use OS_POSIX instead of a 70 // For access to standard POSIXish features, use OS_POSIX instead of a
75 // more specific macro. 71 // more specific macro.
76 #if defined(OS_MACOSX) || defined(OS_LINUX) || defined(OS_FREEBSD) || \ 72 #if defined(OS_MACOSX) || defined(OS_LINUX) || defined(OS_FREEBSD) || \
77 defined(OS_OPENBSD) || defined(OS_SOLARIS) || defined(OS_ANDROID) || \ 73 defined(OS_OPENBSD) || defined(OS_SOLARIS) || defined(OS_ANDROID) || \
(...skipping 81 matching lines...) Expand 10 before | Expand all | Expand 10 after
159 #if defined(OS_ANDROID) 155 #if defined(OS_ANDROID)
160 // The compiler thinks std::string::const_iterator and "const char*" are 156 // The compiler thinks std::string::const_iterator and "const char*" are
161 // equivalent types. 157 // equivalent types.
162 #define STD_STRING_ITERATOR_IS_CHAR_POINTER 158 #define STD_STRING_ITERATOR_IS_CHAR_POINTER
163 // The compiler thinks base::string16::const_iterator and "char16*" are 159 // The compiler thinks base::string16::const_iterator and "char16*" are
164 // equivalent types. 160 // equivalent types.
165 #define BASE_STRING16_ITERATOR_IS_CHAR16_POINTER 161 #define BASE_STRING16_ITERATOR_IS_CHAR16_POINTER
166 #endif 162 #endif
167 163
168 #endif // BUILD_BUILD_CONFIG_H_ 164 #endif // BUILD_BUILD_CONFIG_H_
OLDNEW
« no previous file with comments | « no previous file | build/common.gypi » ('j') | build/linux/system.gyp » ('J')

Powered by Google App Engine
This is Rietveld 408576698