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

Side by Side Diff: build/build_config.h

Issue 5180002: Adjust default font sizes for new hand hinted fonts. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: introduce CROS_HAND_HINTED_FONTS define, fix oobe/login buttons, dropdowns Created 10 years, 1 month 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
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 109 matching lines...) Expand 10 before | Expand all | Expand 10 after
120 (__WCHAR_MAX__ == 0x7fff || __WCHAR_MAX__ == 0xffff) 120 (__WCHAR_MAX__ == 0x7fff || __WCHAR_MAX__ == 0xffff)
121 // On Posix, we'll detect short wchar_t, but projects aren't guaranteed to 121 // On Posix, we'll detect short wchar_t, but projects aren't guaranteed to
122 // compile in this mode (in particular, Chrome doesn't). This is intended for 122 // compile in this mode (in particular, Chrome doesn't). This is intended for
123 // other projects using base who manage their own dependencies and make sure 123 // other projects using base who manage their own dependencies and make sure
124 // short wchar works for them. 124 // short wchar works for them.
125 #define WCHAR_T_IS_UTF16 125 #define WCHAR_T_IS_UTF16
126 #else 126 #else
127 #error Please add support for your compiler in build/build_config.h 127 #error Please add support for your compiler in build/build_config.h
128 #endif 128 #endif
129 129
130 // Single define to trigger type of fonts which are used.
131 #if defined(OS_CHROMEOS)
132 #define CROS_HAND_HINTED_FONTS
133 #endif
134
130 #endif // BUILD_BUILD_CONFIG_H_ 135 #endif // BUILD_BUILD_CONFIG_H_
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698