| OLD | NEW |
| 1 # Copyright 2013 the V8 project authors. All rights reserved. | 1 # Copyright 2013 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 1126 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1137 # Support for backtrace_symbols. | 1137 # Support for backtrace_symbols. |
| 1138 'ldflags': [ '-rdynamic' ], | 1138 'ldflags': [ '-rdynamic' ], |
| 1139 }], | 1139 }], |
| 1140 ['OS=="linux" and disable_glibcxx_debug==0', { | 1140 ['OS=="linux" and disable_glibcxx_debug==0', { |
| 1141 # Enable libstdc++ debugging facilities to help catch problems | 1141 # Enable libstdc++ debugging facilities to help catch problems |
| 1142 # early, see http://crbug.com/65151 . | 1142 # early, see http://crbug.com/65151 . |
| 1143 'defines': ['_GLIBCXX_DEBUG=1',], | 1143 'defines': ['_GLIBCXX_DEBUG=1',], |
| 1144 }], | 1144 }], |
| 1145 ['OS=="aix"', { | 1145 ['OS=="aix"', { |
| 1146 'ldflags': [ '-Wl,-bbigtoc' ], | 1146 'ldflags': [ '-Wl,-bbigtoc' ], |
| 1147 'conditions': [ |
| 1148 ['v8_target_arch=="ppc64"', { |
| 1149 'cflags': [ '-maix64 -mcmodel=large' ], |
| 1150 }], |
| 1151 ], |
| 1147 }], | 1152 }], |
| 1148 ['OS=="android"', { | 1153 ['OS=="android"', { |
| 1149 'variables': { | 1154 'variables': { |
| 1150 'android_full_debug%': 1, | 1155 'android_full_debug%': 1, |
| 1151 }, | 1156 }, |
| 1152 'conditions': [ | 1157 'conditions': [ |
| 1153 ['android_full_debug==0', { | 1158 ['android_full_debug==0', { |
| 1154 # Disable full debug if we want a faster v8 in a debug build. | 1159 # Disable full debug if we want a faster v8 in a debug build. |
| 1155 # TODO(2304): pass DISABLE_DEBUG_ASSERT instead of hiding DEBUG. | 1160 # TODO(2304): pass DISABLE_DEBUG_ASSERT instead of hiding DEBUG. |
| 1156 'defines!': [ | 1161 'defines!': [ |
| (...skipping 106 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1263 ['v8_enable_slow_dchecks==1', { | 1268 ['v8_enable_slow_dchecks==1', { |
| 1264 'defines': [ | 1269 'defines': [ |
| 1265 'ENABLE_SLOW_DCHECKS', | 1270 'ENABLE_SLOW_DCHECKS', |
| 1266 ], | 1271 ], |
| 1267 }], | 1272 }], |
| 1268 ], # conditions | 1273 ], # conditions |
| 1269 }, # Release | 1274 }, # Release |
| 1270 }, # configurations | 1275 }, # configurations |
| 1271 }, # target_defaults | 1276 }, # target_defaults |
| 1272 } | 1277 } |
| OLD | NEW |