| 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 159 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 170 }, | 170 }, |
| 171 'target_defaults': { | 171 'target_defaults': { |
| 172 'variables': { | 172 'variables': { |
| 173 'v8_code%': '<(v8_code)', | 173 'v8_code%': '<(v8_code)', |
| 174 }, | 174 }, |
| 175 'default_configuration': 'Debug', | 175 'default_configuration': 'Debug', |
| 176 'configurations': { | 176 'configurations': { |
| 177 'DebugBaseCommon': { | 177 'DebugBaseCommon': { |
| 178 'cflags': [ '-g', '-O0' ], | 178 'cflags': [ '-g', '-O0' ], |
| 179 'conditions': [ | 179 'conditions': [ |
| 180 ['(v8_target_arch=="ia32" or v8_target_arch=="x87") and \ | |
| 181 OS=="linux"', { | |
| 182 'defines': [ | |
| 183 '_GLIBCXX_DEBUG' | |
| 184 ], | |
| 185 }], | |
| 186 [ 'OS=="aix"', { | 180 [ 'OS=="aix"', { |
| 187 'cflags': [ '-gxcoff' ], | 181 'cflags': [ '-gxcoff' ], |
| 188 }], | 182 }], |
| 189 ], | 183 ], |
| 190 }, | 184 }, |
| 191 'Optdebug': { | 185 'Optdebug': { |
| 192 'inherit_from': [ 'DebugBaseCommon', 'DebugBase1' ], | 186 'inherit_from': [ 'DebugBaseCommon', 'DebugBase1' ], |
| 193 }, | 187 }, |
| 194 'Debug': { | 188 'Debug': { |
| 195 # Xcode insists on this empty entry. | 189 # Xcode insists on this empty entry. |
| (...skipping 326 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 522 ['use_goma==1 and ("<(GENERATOR)"=="ninja" or clang==1)', { | 516 ['use_goma==1 and ("<(GENERATOR)"=="ninja" or clang==1)', { |
| 523 'make_global_settings': [ | 517 'make_global_settings': [ |
| 524 ['CC_wrapper', '<(gomadir)/gomacc'], | 518 ['CC_wrapper', '<(gomadir)/gomacc'], |
| 525 ['CXX_wrapper', '<(gomadir)/gomacc'], | 519 ['CXX_wrapper', '<(gomadir)/gomacc'], |
| 526 ['CC.host_wrapper', '<(gomadir)/gomacc'], | 520 ['CC.host_wrapper', '<(gomadir)/gomacc'], |
| 527 ['CXX.host_wrapper', '<(gomadir)/gomacc'], | 521 ['CXX.host_wrapper', '<(gomadir)/gomacc'], |
| 528 ], | 522 ], |
| 529 }], | 523 }], |
| 530 ], | 524 ], |
| 531 } | 525 } |
| OLD | NEW |