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

Side by Side Diff: build/build_config.h

Issue 2815453004: For building v8 using gn on aix_ppc64, linux_s390x and linux_ppc64. (Closed)
Patch Set: Created 3 years, 8 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/config/BUILD.gn » ('j') | build/config/BUILDCONFIG.gn » ('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 // OS_CHROMEOS is set by the build system 9 // OS_CHROMEOS is set by the build system
10 // Compiler: 10 // Compiler:
(...skipping 41 matching lines...) Expand 10 before | Expand all | Expand 10 after
52 #elif defined(__FreeBSD__) 52 #elif defined(__FreeBSD__)
53 #define OS_FREEBSD 1 53 #define OS_FREEBSD 1
54 #elif defined(__NetBSD__) 54 #elif defined(__NetBSD__)
55 #define OS_NETBSD 1 55 #define OS_NETBSD 1
56 #elif defined(__OpenBSD__) 56 #elif defined(__OpenBSD__)
57 #define OS_OPENBSD 1 57 #define OS_OPENBSD 1
58 #elif defined(__sun) 58 #elif defined(__sun)
59 #define OS_SOLARIS 1 59 #define OS_SOLARIS 1
60 #elif defined(__QNXNTO__) 60 #elif defined(__QNXNTO__)
61 #define OS_QNX 1 61 #define OS_QNX 1
62 #elif defined(_AIX)
63 #define OS_AIX 1
62 #else 64 #else
63 #error Please add support for your platform in build/build_config.h 65 #error Please add support for your platform in build/build_config.h
64 #endif 66 #endif
65 67
66 #if defined(USE_OPENSSL_CERTS) && defined(USE_NSS_CERTS) 68 #if defined(USE_OPENSSL_CERTS) && defined(USE_NSS_CERTS)
67 #error Cannot use both OpenSSL and NSS for certificates 69 #error Cannot use both OpenSSL and NSS for certificates
68 #endif 70 #endif
69 71
70 // For access to standard BSD features, use OS_BSD instead of a 72 // For access to standard BSD features, use OS_BSD instead of a
71 // more specific macro. 73 // more specific macro.
72 #if defined(OS_FREEBSD) || defined(OS_NETBSD) || defined(OS_OPENBSD) 74 #if defined(OS_FREEBSD) || defined(OS_NETBSD) || defined(OS_OPENBSD)
73 #define OS_BSD 1 75 #define OS_BSD 1
74 #endif 76 #endif
75 77
76 // For access to standard POSIXish features, use OS_POSIX instead of a 78 // For access to standard POSIXish features, use OS_POSIX instead of a
77 // more specific macro. 79 // more specific macro.
78 #if defined(OS_MACOSX) || defined(OS_LINUX) || defined(OS_FREEBSD) || \ 80 #if defined(OS_MACOSX) || defined(OS_LINUX) || defined(OS_FREEBSD) || \
79 defined(OS_NETBSD) || defined(OS_OPENBSD) || defined(OS_SOLARIS) || \ 81 defined(OS_NETBSD) || defined(OS_OPENBSD) || defined(OS_SOLARIS) || \
80 defined(OS_ANDROID) || defined(OS_OPENBSD) || defined(OS_SOLARIS) || \ 82 defined(OS_ANDROID) || defined(OS_OPENBSD) || defined(OS_SOLARIS) || \
81 defined(OS_ANDROID) || defined(OS_NACL) || defined(OS_QNX) 83 defined(OS_ANDROID) || defined(OS_NACL) || defined(OS_QNX) || \
Dirk Pranke 2017/04/14 01:29:02 It seems like some of these checks are duplicated.
rayb 2017/04/25 00:41:03 Done.
84 defined(OS_AIX)
82 #define OS_POSIX 1 85 #define OS_POSIX 1
83 #endif 86 #endif
84 87
85 // Use tcmalloc 88 // Use tcmalloc
86 #if (defined(OS_WIN) || defined(OS_LINUX) || defined(OS_ANDROID)) && \ 89 #if (defined(OS_WIN) || defined(OS_LINUX) || defined(OS_ANDROID)) && \
87 !defined(NO_TCMALLOC) 90 !defined(NO_TCMALLOC)
88 #define USE_TCMALLOC 1 91 #define USE_TCMALLOC 1
89 #endif 92 #endif
90 93
91 // Compiler detection. 94 // Compiler detection.
(...skipping 95 matching lines...) Expand 10 before | Expand all | Expand 10 after
187 #if defined(OS_ANDROID) 190 #if defined(OS_ANDROID)
188 // The compiler thinks std::string::const_iterator and "const char*" are 191 // The compiler thinks std::string::const_iterator and "const char*" are
189 // equivalent types. 192 // equivalent types.
190 #define STD_STRING_ITERATOR_IS_CHAR_POINTER 193 #define STD_STRING_ITERATOR_IS_CHAR_POINTER
191 // The compiler thinks base::string16::const_iterator and "char16*" are 194 // The compiler thinks base::string16::const_iterator and "char16*" are
192 // equivalent types. 195 // equivalent types.
193 #define BASE_STRING16_ITERATOR_IS_CHAR16_POINTER 196 #define BASE_STRING16_ITERATOR_IS_CHAR16_POINTER
194 #endif 197 #endif
195 198
196 #endif // BUILD_BUILD_CONFIG_H_ 199 #endif // BUILD_BUILD_CONFIG_H_
OLDNEW
« no previous file with comments | « no previous file | build/config/BUILD.gn » ('j') | build/config/BUILDCONFIG.gn » ('J')

Powered by Google App Engine
This is Rietveld 408576698