| OLD | NEW |
| 1 # Copyright 2012 the V8 project authors. All rights reserved. | 1 # Copyright 2012 the V8 project authors. All rights reserved. |
| 2 # Redistribution and use in source and binary forms, with or without | 2 # Redistribution and use in source and binary forms, with or without |
| 3 # modification, are permitted provided that the following conditions are | 3 # modification, are permitted provided that the following conditions are |
| 4 # met: | 4 # met: |
| 5 # | 5 # |
| 6 # * Redistributions of source code must retain the above copyright | 6 # * Redistributions of source code must retain the above copyright |
| 7 # notice, this list of conditions and the following disclaimer. | 7 # notice, this list of conditions and the following disclaimer. |
| 8 # * Redistributions in binary form must reproduce the above | 8 # * Redistributions in binary form must reproduce the above |
| 9 # copyright notice, this list of conditions and the following | 9 # copyright notice, this list of conditions and the following |
| 10 # disclaimer in the documentation and/or other materials provided | 10 # disclaimer in the documentation and/or other materials provided |
| (...skipping 118 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 129 'arm_thumb': 'default', | 129 'arm_thumb': 'default', |
| 130 }, | 130 }, |
| 131 'target_defaults': { | 131 'target_defaults': { |
| 132 'variables': { | 132 'variables': { |
| 133 'v8_code%': '<(v8_code)', | 133 'v8_code%': '<(v8_code)', |
| 134 }, | 134 }, |
| 135 'default_configuration': 'Debug', | 135 'default_configuration': 'Debug', |
| 136 'configurations': { | 136 'configurations': { |
| 137 'DebugBaseCommon': { | 137 'DebugBaseCommon': { |
| 138 'cflags': [ '-g', '-O0' ], | 138 'cflags': [ '-g', '-O0' ], |
| 139 'defines': [ |
| 140 '_GLIBCXX_DEBUG' |
| 141 ], |
| 139 }, | 142 }, |
| 140 'Optdebug': { | 143 'Optdebug': { |
| 141 'inherit_from': [ 'DebugBaseCommon', 'DebugBase2' ], | 144 'inherit_from': [ 'DebugBaseCommon', 'DebugBase2' ], |
| 142 }, | 145 }, |
| 143 'Debug': { | 146 'Debug': { |
| 144 # Xcode insists on this empty entry. | 147 # Xcode insists on this empty entry. |
| 145 }, | 148 }, |
| 146 'Release': { | 149 'Release': { |
| 147 # Xcode insists on this empty entry. | 150 # Xcode insists on this empty entry. |
| 148 }, | 151 }, |
| (...skipping 260 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 409 ], | 412 ], |
| 410 'target_conditions': [ | 413 'target_conditions': [ |
| 411 ['_type!="static_library"', { | 414 ['_type!="static_library"', { |
| 412 'xcode_settings': {'OTHER_LDFLAGS': ['-Wl,-search_paths_first']}, | 415 'xcode_settings': {'OTHER_LDFLAGS': ['-Wl,-search_paths_first']}, |
| 413 }], | 416 }], |
| 414 ], # target_conditions | 417 ], # target_conditions |
| 415 }, # target_defaults | 418 }, # target_defaults |
| 416 }], # OS=="mac" | 419 }], # OS=="mac" |
| 417 ], | 420 ], |
| 418 } | 421 } |
| OLD | NEW |