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

Unified Diff: tools/gyp/configurations.gypi

Issue 12033063: - Fix simarm/simmips builds on Mac. (Closed) Base URL: http://dart.googlecode.com/svn/branches/bleeding_edge/dart/
Patch Set: Created 7 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
Index: tools/gyp/configurations.gypi
===================================================================
--- tools/gyp/configurations.gypi (revision 17487)
+++ tools/gyp/configurations.gypi (working copy)
@@ -104,10 +104,7 @@
},
'DebugSIMARM': {
- # Should not inherit from Dart_Debug because Dart_simarm_Base defines
- # the optimization level to be -O3, as the simulator runs too slow
- # otherwise.
- 'inherit_from': ['Dart_Base', 'Dart_simarm_Base'],
+ 'inherit_from': ['Dart_Base', 'Dart_simarm_Base', 'Dart_Debug'],
'defines': [
'DEBUG',
],
@@ -126,10 +123,7 @@
},
'DebugSIMMIPS': {
- # Should not inherit from Dart_Debug because Dart_simmips_Base defines
- # the optimization level to be -O3, as the simulator runs too slow
- # otherwise.
- 'inherit_from': ['Dart_Base', 'Dart_simmips_Base'],
+ 'inherit_from': ['Dart_Base', 'Dart_simmips_Base', 'Dart_Debug'],
'defines': [
'DEBUG',
],

Powered by Google App Engine
This is Rietveld 408576698