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

Side by Side Diff: build/build_config.h

Issue 7996008: Get views and views_unittests to build w/ use_aura=1 (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Fixed review issue Created 9 years, 3 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 | « no previous file | build/common.gypi » ('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) 2011 The Chromium Authors. All rights reserved. 1 // Copyright (c) 2011 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 25 matching lines...) Expand all
36 #elif defined(__OpenBSD__) 36 #elif defined(__OpenBSD__)
37 #define OS_OPENBSD 1 37 #define OS_OPENBSD 1
38 #define TOOLKIT_GTK 38 #define TOOLKIT_GTK
39 #elif defined(__sun) 39 #elif defined(__sun)
40 #define OS_SOLARIS 1 40 #define OS_SOLARIS 1
41 #define TOOLKIT_GTK 41 #define TOOLKIT_GTK
42 #else 42 #else
43 #error Please add support for your platform in build/build_config.h 43 #error Please add support for your platform in build/build_config.h
44 #endif 44 #endif
45 45
46 // A flag derived from the above flags, used to cover GTK code in
47 // both TOOLKIT_GTK and TOOLKIT_VIEWS.
48 #if defined(TOOLKIT_GTK) || (defined(TOOLKIT_VIEWS) && !defined(OS_WIN))
49 #define TOOLKIT_USES_GTK 1
50 #endif
51
52 #if defined(OS_LINUX) || defined(OS_FREEBSD) || defined(OS_OPENBSD) || \ 46 #if defined(OS_LINUX) || defined(OS_FREEBSD) || defined(OS_OPENBSD) || \
53 defined(OS_SOLARIS) || defined(OS_ANDROID) 47 defined(OS_SOLARIS) || defined(OS_ANDROID)
54 #if !defined(USE_OPENSSL) 48 #if !defined(USE_OPENSSL)
55 #define USE_NSS 1 // Default to use NSS for crypto, unless OpenSSL is chosen. 49 #define USE_NSS 1 // Default to use NSS for crypto, unless OpenSSL is chosen.
56 #endif 50 #endif
57 #ifndef OS_ANDROID 51 #ifndef OS_ANDROID
58 #define USE_X11 1 // Use X for graphics. 52 #define USE_X11 1 // Use X for graphics.
59 #endif 53 #endif
60 #endif 54 #endif
61 55
(...skipping 82 matching lines...) Expand 10 before | Expand all | Expand 10 after
144 #if defined(OS_ANDROID) 138 #if defined(OS_ANDROID)
145 // The compiler thinks std::string::const_iterator and "const char*" are 139 // The compiler thinks std::string::const_iterator and "const char*" are
146 // equivalent types. 140 // equivalent types.
147 #define STD_STRING_ITERATOR_IS_CHAR_POINTER 141 #define STD_STRING_ITERATOR_IS_CHAR_POINTER
148 // The compiler thinks base::string16::const_iterator and "char16*" are 142 // The compiler thinks base::string16::const_iterator and "char16*" are
149 // equivalent types. 143 // equivalent types.
150 #define BASE_STRING16_ITERATOR_IS_CHAR16_POINTER 144 #define BASE_STRING16_ITERATOR_IS_CHAR16_POINTER
151 #endif 145 #endif
152 146
153 #endif // BUILD_BUILD_CONFIG_H_ 147 #endif // BUILD_BUILD_CONFIG_H_
OLDNEW
« no previous file with comments | « no previous file | build/common.gypi » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698