| OLD | NEW |
| 1 # Copyright (c) 2009 The Chromium Authors. All rights reserved. | 1 # Copyright (c) 2009 The Chromium Authors. All rights reserved. |
| 2 # Use of this source code is governed by a BSD-style license that can be | 2 # Use of this source code is governed by a BSD-style license that can be |
| 3 # found in the LICENSE file. | 3 # found in the LICENSE file. |
| 4 | 4 |
| 5 { | 5 { |
| 6 'variables': { | 6 'variables': { |
| 7 'antlrdir': 'third_party/antlr3', | 7 'antlrdir': 'third_party/antlr3', |
| 8 'breakpaddir': 'breakpad/src', | 8 'breakpaddir': 'breakpad/src', |
| 9 'cb_service%': 'none', | 9 'cb_service%': 'none', |
| 10 'fcolladadir': 'third_party/fcollada/files', | 10 'fcolladadir': 'third_party/fcollada/files', |
| (...skipping 16 matching lines...) Expand all Loading... |
| 27 'defines': [ | 27 'defines': [ |
| 28 'GYP_BUILD', # Needed to make a change in base/types.h conditional. | 28 'GYP_BUILD', # Needed to make a change in base/types.h conditional. |
| 29 ], | 29 ], |
| 30 # This needs to be in a target_conditions block in order to successfully | 30 # This needs to be in a target_conditions block in order to successfully |
| 31 # override the xcode_settings in ../../build/common.gypi. | 31 # override the xcode_settings in ../../build/common.gypi. |
| 32 # Something to do with evaluation order. | 32 # Something to do with evaluation order. |
| 33 'target_conditions': [ | 33 'target_conditions': [ |
| 34 ['OS=="mac"', { | 34 ['OS=="mac"', { |
| 35 'xcode_settings': { | 35 'xcode_settings': { |
| 36 'MACOSX_DEPLOYMENT_TARGET': '10.4', | 36 'MACOSX_DEPLOYMENT_TARGET': '10.4', |
| 37 # TODO(maf): figure out proper fix for the following. |
| 38 # There is only one place in plugin_mac.mm which attempts |
| 39 # to use ObjC exception handling. |
| 40 'GCC_ENABLE_CPP_EXCEPTIONS': 'YES', |
| 37 }, | 41 }, |
| 38 }], | 42 }], |
| 39 ], | 43 ], |
| 40 }, | 44 }, |
| 41 'conditions' : [ | 45 'conditions' : [ |
| 42 ['OS == "win"', | 46 ['OS == "win"', |
| 43 { | 47 { |
| 44 'variables': { | 48 'variables': { |
| 45 'renderer%': 'd3d9', | 49 'renderer%': 'd3d9', |
| 46 'cgdir': 'third_party/cg/files/win', | 50 'cgdir': 'third_party/cg/files/win', |
| (...skipping 139 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 186 { | 190 { |
| 187 'target_defaults': { | 191 'target_defaults': { |
| 188 'defines': [ | 192 'defines': [ |
| 189 'CB_SERVICE_GL', | 193 'CB_SERVICE_GL', |
| 190 ], | 194 ], |
| 191 }, | 195 }, |
| 192 }, | 196 }, |
| 193 ], | 197 ], |
| 194 ], | 198 ], |
| 195 } | 199 } |
| OLD | NEW |