| OLD | NEW |
| 1 # Copyright 2011 the V8 project authors. All rights reserved. | 1 # Copyright 2011 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 155 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 166 'COMPRESS_STARTUP_DATA_BZ2', | 166 'COMPRESS_STARTUP_DATA_BZ2', |
| 167 ], | 167 ], |
| 168 }], | 168 }], |
| 169 ['OS=="win" and v8_enable_prof==1', { | 169 ['OS=="win" and v8_enable_prof==1', { |
| 170 'msvs_settings': { | 170 'msvs_settings': { |
| 171 'VCLinkerTool': { | 171 'VCLinkerTool': { |
| 172 'GenerateMapFile': 'true', | 172 'GenerateMapFile': 'true', |
| 173 }, | 173 }, |
| 174 }, | 174 }, |
| 175 }], | 175 }], |
| 176 ['OS=="linux" or OS=="freebsd" or OS=="openbsd" or OS=="solaris"', { |
| 177 'conditions': [ |
| 178 [ 'target_arch=="ia32"', { |
| 179 'cflags': [ '-m32' ], |
| 180 'ldflags': [ '-m32' ], |
| 181 }], |
| 182 ], |
| 183 }], |
| 176 ], | 184 ], |
| 177 'configurations': { | 185 'configurations': { |
| 178 'Debug': { | 186 'Debug': { |
| 179 'defines': [ | 187 'defines': [ |
| 180 'DEBUG', | 188 'DEBUG', |
| 181 'ENABLE_DISASSEMBLER', | 189 'ENABLE_DISASSEMBLER', |
| 182 'V8_ENABLE_CHECKS', | 190 'V8_ENABLE_CHECKS', |
| 183 'OBJECT_PRINT', | 191 'OBJECT_PRINT', |
| 184 ], | 192 ], |
| 185 'msvs_settings': { | 193 'msvs_settings': { |
| (...skipping 95 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 281 # some test cases can cause stack overflow. | 289 # some test cases can cause stack overflow. |
| 282 # 'StackReserveSize': '297152', | 290 # 'StackReserveSize': '297152', |
| 283 }, | 291 }, |
| 284 }, | 292 }, |
| 285 }], | 293 }], |
| 286 ], | 294 ], |
| 287 }, | 295 }, |
| 288 }, | 296 }, |
| 289 }, | 297 }, |
| 290 } | 298 } |
| OLD | NEW |