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

Unified Diff: dart/tools/gyp/configurations_make.gypi

Issue 119673004: Version 1.1.0-dev.5.2 (Closed) Base URL: http://dart.googlecode.com/svn/trunk/
Patch Set: Created 6 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 | « dart/tools/gyp/configurations_android.gypi ('k') | dart/tools/gyp/configurations_msvs.gypi » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: dart/tools/gyp/configurations_make.gypi
===================================================================
--- dart/tools/gyp/configurations_make.gypi (revision 31530)
+++ dart/tools/gyp/configurations_make.gypi (working copy)
@@ -4,12 +4,11 @@
{
'variables': {
- 'arm_cross_libc%': '/opt/codesourcery/arm-2009q1/arm-none-linux-gnueabi/libc',
'dart_debug_optimization_level%': '2',
},
'target_defaults': {
'configurations': {
- 'Dart_Base': {
+ 'Dart_Linux_Base': {
'abstract': 1,
'cflags': [
'-Werror',
@@ -29,17 +28,20 @@
],
},
- 'Dart_ia32_Base': {
+ 'Dart_Linux_ia32_Base': {
+ 'abstract': 1,
'cflags': [ '-m32', '-msse2' ],
'ldflags': [ '-m32', ],
},
- 'Dart_x64_Base': {
+ 'Dart_Linux_x64_Base': {
+ 'abstract': 1,
'cflags': [ '-m64', '-msse2' ],
'ldflags': [ '-m64', ],
},
- 'Dart_simarm_Base': {
+ 'Dart_Linux_simarm_Base': {
+ 'abstract': 1,
'cflags': [ '-O3', '-m32', '-msse2' ],
'ldflags': [ '-m32', ],
'defines': [
@@ -47,7 +49,8 @@
],
},
- 'Dart_arm_Base': {
+ 'Dart_Linux_arm_Base': {
+ 'abstract': 1,
'target_conditions': [
['_toolset=="target"', {
'cflags': [
@@ -68,12 +71,14 @@
}]]
},
- 'Dart_simmips_Base': {
+ 'Dart_Linux_simmips_Base': {
+ 'abstract': 1,
'cflags': [ '-O3', '-m32', '-msse2' ],
'ldflags': [ '-m32', ],
},
- 'Dart_mips_Base': {
+ 'Dart_Linux_mips_Base': {
+ 'abstract': 1,
'target_conditions': [
['_toolset=="target"', {
'cflags': [
@@ -88,7 +93,8 @@
}]]
},
- 'Dart_Debug': {
+ 'Dart_Linux_Debug': {
+ 'abstract': 1,
'cflags': [
'-O<(dart_debug_optimization_level)',
# The sampling profiler uses the frame pointer to walk the stack.
@@ -99,7 +105,8 @@
],
},
- 'Dart_Release': {
+ 'Dart_Linux_Release': {
+ 'abstract': 1,
'cflags': [
'-O3',
# The sampling profiler uses the frame pointer to walk the stack.
« no previous file with comments | « dart/tools/gyp/configurations_android.gypi ('k') | dart/tools/gyp/configurations_msvs.gypi » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698