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

Side by Side Diff: third_party/cld/base/build_config.h

Issue 7238021: Solaris patch (Closed) Base URL: http://git.chromium.org/git/chromium.git@trunk
Patch Set: fixed some sysctl includes Created 9 years, 5 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 | Annotate | Revision Log
« no previous file with comments | « skia/ext/platform_device.h ('k') | third_party/libevent/README.chromium » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
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 14 matching lines...) Expand all
25 #endif 25 #endif
26 #elif defined(_WIN32) 26 #elif defined(_WIN32)
27 #define OS_WIN 1 27 #define OS_WIN 1
28 #define TOOLKIT_VIEWS 1 28 #define TOOLKIT_VIEWS 1
29 #elif defined(__FreeBSD__) 29 #elif defined(__FreeBSD__)
30 #define OS_FREEBSD 1 30 #define OS_FREEBSD 1
31 #define TOOLKIT_GTK 31 #define TOOLKIT_GTK
32 #elif defined(__OpenBSD__) 32 #elif defined(__OpenBSD__)
33 #define OS_OPENBSD 1 33 #define OS_OPENBSD 1
34 #define TOOLKIT_GTK 34 #define TOOLKIT_GTK
35 #elif defined(__sun)
36 #define OS_SOLARIS 1
37 #define TOOLKIT_GTK
35 #else 38 #else
36 #error Please add support for your platform in build/build_config.h 39 #error Please add support for your platform in build/build_config.h
37 #endif 40 #endif
38 41
39 // A flag derived from the above flags, used to cover GTK code in 42 // A flag derived from the above flags, used to cover GTK code in
40 // both TOOLKIT_GTK and TOOLKIT_VIEWS. 43 // both TOOLKIT_GTK and TOOLKIT_VIEWS.
41 #if defined(TOOLKIT_GTK) || (defined(TOOLKIT_VIEWS) && !defined(OS_WIN)) 44 #if defined(TOOLKIT_GTK) || (defined(TOOLKIT_VIEWS) && !defined(OS_WIN))
42 #define TOOLKIT_USES_GTK 1 45 #define TOOLKIT_USES_GTK 1
43 #endif 46 #endif
44 47
45 #if defined(OS_LINUX) || defined(OS_FREEBSD) || defined(OS_OPENBSD) 48 #if defined(OS_LINUX) || defined(OS_FREEBSD) || defined(OS_OPENBSD)
46 #define USE_NSS 1 // Use NSS for crypto. 49 #define USE_NSS 1 // Use NSS for crypto.
47 #define USE_X11 1 // Use X for graphics. 50 #define USE_X11 1 // Use X for graphics.
48 #endif 51 #endif
49 52
50 // For access to standard POSIXish features, use OS_POSIX instead of a 53 // For access to standard POSIXish features, use OS_POSIX instead of a
51 // more specific macro. 54 // more specific macro.
52 #if defined(OS_MACOSX) || defined(OS_LINUX) || defined(OS_FREEBSD) || defined(OS _OPENBSD) 55 #if defined(OS_MACOSX) || defined(OS_LINUX) || defined(OS_FREEBSD) || defined(OS _OPENBSD) || defined(OS_SOLARIS)
53 #define OS_POSIX 1 56 #define OS_POSIX 1
54 // Use base::DataPack for name/value pairs. 57 // Use base::DataPack for name/value pairs.
55 #define USE_BASE_DATA_PACK 1 58 #define USE_BASE_DATA_PACK 1
56 #endif 59 #endif
57 60
58 // Use tcmalloc 61 // Use tcmalloc
59 #if defined(OS_WIN) && ! defined(NO_TCMALLOC) 62 #if defined(OS_WIN) && ! defined(NO_TCMALLOC)
60 #define USE_TCMALLOC 1 63 #define USE_TCMALLOC 1
61 #endif 64 #endif
62 65
(...skipping 40 matching lines...) Expand 10 before | Expand all | Expand 10 after
103 // On Posix, we'll detect short wchar_t, but projects aren't guaranteed to 106 // On Posix, we'll detect short wchar_t, but projects aren't guaranteed to
104 // compile in this mode (in particular, Chrome doesn't). This is intended for 107 // compile in this mode (in particular, Chrome doesn't). This is intended for
105 // other projects using base who manage their own dependencies and make sure 108 // other projects using base who manage their own dependencies and make sure
106 // short wchar works for them. 109 // short wchar works for them.
107 #define WCHAR_T_IS_UTF16 110 #define WCHAR_T_IS_UTF16
108 #else 111 #else
109 #error Please add support for your compiler in build/build_config.h 112 #error Please add support for your compiler in build/build_config.h
110 #endif 113 #endif
111 114
112 #endif // BUILD_BUILD_CONFIG_H_ 115 #endif // BUILD_BUILD_CONFIG_H_
OLDNEW
« no previous file with comments | « skia/ext/platform_device.h ('k') | third_party/libevent/README.chromium » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698