From dbf1cbd5bd502d76451d93044019f592d6a694af Mon Sep 17 00:00:00 2001 From: "ahe@google.com" Date: Thu, 27 Sep 2012 15:30:14 +0000 Subject: [PATCH] Attempt to fix dartium mac build Review URL: https://codereview.chromium.org//10982070 git-svn-id: https://dart.googlecode.com/svn/branches/bleeding_edge/dart@12969 260f80e4-7a28-3924-810f-c04153c831b5 --- runtime/tools/gyp/runtime-configurations.gypi | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/runtime/tools/gyp/runtime-configurations.gypi b/runtime/tools/gyp/runtime-configurations.gypi index 70f121c8bfc..e0e10143073 100644 --- a/runtime/tools/gyp/runtime-configurations.gypi +++ b/runtime/tools/gyp/runtime-configurations.gypi @@ -11,6 +11,7 @@ 'configurations': { 'Dart_Base': { + 'abstract': 1, 'xcode_settings': { 'GCC_WARN_HIDDEN_VIRTUAL_FUNCTIONS': 'YES', # -Woverloaded-virtual }, @@ -33,18 +34,21 @@ }, 'Dart_ia32_Base': { + 'abstract': 1, 'xcode_settings': { 'ARCHS': [ 'i386' ], }, }, 'Dart_x64_Base': { + 'abstract': 1, 'xcode_settings': { 'ARCHS': [ 'x86_64' ], }, }, 'Dart_simarm_Base': { + 'abstract': 1, 'xcode_settings': { 'ARCHS': [ 'i386' ], 'GCC_OPTIMIZATION_LEVEL': '3', @@ -52,6 +56,7 @@ }, 'Dart_Release': { + 'abstract': 1, 'xcode_settings': { 'GCC_OPTIMIZATION_LEVEL': '3', },