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

Unified Diff: content/content.gyp

Issue 8495043: Turn on -Wexit-time-destructors for ui and content. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: comments Created 9 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 side-by-side diff with in-line comments
Download patch
« no previous file with comments | « build/common.gypi ('k') | ui/ui.gyp » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: content/content.gyp
diff --git a/content/content.gyp b/content/content.gyp
index be3f85c6732549852aff9865435fbe45d12feb6e..311c714a298ea74e7d6d6b8c8fe680b509c36a2b 100644
--- a/content/content.gyp
+++ b/content/content.gyp
@@ -41,6 +41,7 @@
},
{'target_name': 'content_app',
'type': 'static_library',
+ 'variables': { 'enable_wexit_time_destructors': 1, },
'includes': [
'content_app.gypi',
],
@@ -50,6 +51,7 @@
},
{'target_name': 'content_browser',
'type': 'static_library',
+ 'variables': { 'enable_wexit_time_destructors': 1, },
'includes': [
'content_browser.gypi',
],
@@ -59,12 +61,14 @@
},
{'target_name': 'content_common',
'type': 'static_library',
+ 'variables': { 'enable_wexit_time_destructors': 1, },
'includes': [
'content_common.gypi',
],
},
{'target_name': 'content_gpu',
'type': 'static_library',
+ 'variables': { 'enable_wexit_time_destructors': 1, },
'includes': [
'content_gpu.gypi',
],
@@ -74,6 +78,7 @@
},
{'target_name': 'content_plugin',
'type': 'static_library',
+ 'variables': { 'enable_wexit_time_destructors': 1, },
'includes': [
'content_plugin.gypi',
],
@@ -83,12 +88,14 @@
},
{'target_name': 'content_ppapi_plugin',
'type': 'static_library',
+ 'variables': { 'enable_wexit_time_destructors': 1, },
'includes': [
'content_ppapi_plugin.gypi',
],
},
{'target_name': 'content_renderer',
'type': 'static_library',
+ 'variables': { 'enable_wexit_time_destructors': 1, },
'includes': [
'content_renderer.gypi',
],
@@ -98,6 +105,7 @@
},
{'target_name': 'content_utility',
'type': 'static_library',
+ 'variables': { 'enable_wexit_time_destructors': 1, },
'includes': [
'content_utility.gypi',
],
@@ -107,6 +115,7 @@
},
{'target_name': 'content_worker',
'type': 'static_library',
+ 'variables': { 'enable_wexit_time_destructors': 1, },
'includes': [
'content_worker.gypi',
],
@@ -185,6 +194,7 @@
'targets': [
{'target_name': 'content',
'type': 'shared_library',
+ 'variables': { 'enable_wexit_time_destructors': 1, },
'includes': [
'content_app.gypi',
'content_browser.gypi',
« no previous file with comments | « build/common.gypi ('k') | ui/ui.gyp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698