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 117 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
128 'arm_fpu%': 'vfpv3', | 128 'arm_fpu%': 'vfpv3', |
129 'arm_float_abi%': 'default', | 129 'arm_float_abi%': 'default', |
130 'arm_thumb': 'default', | 130 'arm_thumb': 'default', |
131 }, | 131 }, |
132 'target_defaults': { | 132 'target_defaults': { |
133 'variables': { | 133 'variables': { |
134 'v8_code%': '<(v8_code)', | 134 'v8_code%': '<(v8_code)', |
135 }, | 135 }, |
136 'default_configuration': 'Debug', | 136 'default_configuration': 'Debug', |
137 'configurations': { | 137 'configurations': { |
| 138 'DebugBaseCommon': { |
| 139 'cflags': [ '-g', '-O0' ], |
| 140 }, |
| 141 'Optdebug': { |
| 142 'inherit_from': [ 'DebugBaseCommon', 'DebugBase2' ], |
| 143 }, |
138 'Debug': { | 144 'Debug': { |
139 'cflags': [ '-g', '-O0' ], | 145 # Xcode insists on this empty entry. |
140 }, | 146 }, |
141 'Release': { | 147 'Release': { |
142 # Xcode insists on this empty entry. | 148 # Xcode insists on this empty entry. |
143 }, | 149 }, |
144 }, | 150 }, |
145 'target_conditions': [ | 151 'target_conditions': [ |
146 ['v8_code == 0', { | 152 ['v8_code == 0', { |
147 'defines!': [ | 153 'defines!': [ |
148 'DEBUG', | 154 'DEBUG', |
149 ], | 155 ], |
(...skipping 202 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
352 ], | 358 ], |
353 'target_conditions': [ | 359 'target_conditions': [ |
354 ['_type!="static_library"', { | 360 ['_type!="static_library"', { |
355 'xcode_settings': {'OTHER_LDFLAGS': ['-Wl,-search_paths_first']}, | 361 'xcode_settings': {'OTHER_LDFLAGS': ['-Wl,-search_paths_first']}, |
356 }], | 362 }], |
357 ], # target_conditions | 363 ], # target_conditions |
358 }, # target_defaults | 364 }, # target_defaults |
359 }], # OS=="mac" | 365 }], # OS=="mac" |
360 ], | 366 ], |
361 } | 367 } |
OLD | NEW |