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

Unified Diff: gyp/dng_sdk.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 | « gyp/codec.gyp ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: gyp/dng_sdk.gyp
diff --git a/gyp/dng_sdk.gyp b/gyp/dng_sdk.gyp
index 1daebe1439576cce91db7a79d2a373d4c358003d..c239724b17a548f8975f54148bd8a1b82002e05a 100644
--- a/gyp/dng_sdk.gyp
+++ b/gyp/dng_sdk.gyp
@@ -20,12 +20,16 @@
'target_name': 'dng_sdk',
'type': 'static_library',
'cflags_cc': [ '-fexceptions' ],
+ 'cflags_cc!': [ '-fno-exceptions' ],
'cflags': [
'-fexceptions',
'-w',
# FIXME: only disable ::posix_memalign() when needed.
'-DNO_POSIX_MEMALIGN'
],
+ 'cflags!': [
+ '-fno-exceptions',
+ ],
'msvs_settings': {
'VCCLCompilerTool': {
'WarningLevel': '0',
@@ -230,6 +234,9 @@
'-fexceptions',
'-frtti',
],
+ 'cflags!': [
+ '-fno-exceptions',
+ ],
'conditions': [
['skia_os == "ios" or skia_os == "mac"', {
'xcode_settings': {
@@ -253,6 +260,12 @@
'-fexceptions',
'-frtti',
],
+ 'OTHER_CFLAGS!': [
+ '-fno-exceptions',
+ ],
+ 'OTHER_CPLUSPLUSFLAGS!': [
+ '-fno-exceptions',
+ ],
},
}],
],
« no previous file with comments | « gyp/codec.gyp ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698