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

Unified Diff: third_party/icu/icu.gyp

Issue 6484008: Enable RTTI for ICU.... (Closed) Base URL: svn://chrome-svn/chrome/trunk/src/
Patch Set: use _MSC_VERSION for conditional include on Win Created 9 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 side-by-side diff with in-line comments
Download patch
« no previous file with comments | « no previous file | third_party/icu/source/common/rbbi.cpp » ('j') | third_party/icu/source/common/rbbi.cpp » ('J')
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: third_party/icu/icu.gyp
===================================================================
--- third_party/icu/icu.gyp (revision 74374)
+++ third_party/icu/icu.gyp (working copy)
@@ -246,7 +246,22 @@
'cflags': [
'-Wno-deprecated-declarations',
],
+ 'cflags_cc': [
+ '-frtti',
+ ],
}],
+ ['OS == "mac"', {
+ 'xcode_settings': {
+ 'GCC_ENABLE_CPP_RTTI': 'YES', # -frtti
+ }
+ }],
+ ['OS == "win"', {
+ 'msvs_settings': {
+ 'VCCLCompilerTool': {
+ 'RuntimeTypeInfo': 'true',
+ },
+ }
+ }],
],
},
{
@@ -447,7 +462,22 @@
'-Wno-deprecated-declarations',
'-Wno-unused-function',
],
+ 'cflags_cc': [
+ '-frtti',
+ ],
}],
+ ['OS == "mac"', {
+ 'xcode_settings': {
+ 'GCC_ENABLE_CPP_RTTI': 'YES', # -frtti
+ }
+ }],
+ ['OS == "win"', {
+ 'msvs_settings': {
+ 'VCCLCompilerTool': {
+ 'RuntimeTypeInfo': 'true',
+ },
+ }
+ }],
],
},
],
« no previous file with comments | « no previous file | third_party/icu/source/common/rbbi.cpp » ('j') | third_party/icu/source/common/rbbi.cpp » ('J')

Powered by Google App Engine
This is Rietveld 408576698