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

Unified Diff: gyp/codec.gyp

Issue 1637513002: Turn off fno-exceptions for SkRawCodec (Closed) Base URL: https://skia.googlesource.com/skia.git@master
Patch Set: Created 4 years, 11 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 | gyp/dng_sdk.gyp » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: gyp/codec.gyp
diff --git a/gyp/codec.gyp b/gyp/codec.gyp
index d7272e2a7a9b80f340aa209e1b865151d9fbb09a..d1e239b03506859c2c52bfe0db723dceeaebe4db 100644
--- a/gyp/codec.gyp
+++ b/gyp/codec.gyp
@@ -89,6 +89,9 @@
'cflags':[
'-fexceptions',
],
+ 'cflags!':[
+ '-fno-exceptions',
+ ],
'include_dirs': [
'../include/codec',
'../include/private',
@@ -119,7 +122,9 @@
['skia_os == "ios" or skia_os == "mac"', {
'xcode_settings': {
'OTHER_CFLAGS': ['-fexceptions'],
+ 'OTHER_CFLAGS!': ['-fno-exceptions'],
'OTHER_CPLUSPLUSFLAGS': ['-fexceptions'],
+ 'OTHER_CPLUSPLUSFLAGS!': ['-fno-exceptions'],
},
}],
],
« no previous file with comments | « no previous file | gyp/dng_sdk.gyp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698