| OLD | NEW |
| 1 # Copyright 2009 the V8 project authors. All rights reserved. | 1 # Copyright 2009 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 19 matching lines...) Expand all Loading... |
| 30 'msvs_use_common_release': 0, | 30 'msvs_use_common_release': 0, |
| 31 'gcc_version%': 'unknown', | 31 'gcc_version%': 'unknown', |
| 32 'target_arch%': 'ia32', | 32 'target_arch%': 'ia32', |
| 33 'v8_use_snapshot%': 'true', | 33 'v8_use_snapshot%': 'true', |
| 34 'v8_regexp%': 'native', | 34 'v8_regexp%': 'native', |
| 35 }, | 35 }, |
| 36 'target_defaults': { | 36 'target_defaults': { |
| 37 'defines': [ | 37 'defines': [ |
| 38 'ENABLE_LOGGING_AND_PROFILING', | 38 'ENABLE_LOGGING_AND_PROFILING', |
| 39 'ENABLE_DEBUGGER_SUPPORT', | 39 'ENABLE_DEBUGGER_SUPPORT', |
| 40 'ENABLE_VMSTATE_TRACKING', |
| 40 ], | 41 ], |
| 41 'conditions': [ | 42 'conditions': [ |
| 42 ['target_arch=="arm"', { | 43 ['target_arch=="arm"', { |
| 43 'defines': [ | 44 'defines': [ |
| 44 'V8_TARGET_ARCH_ARM', | 45 'V8_TARGET_ARCH_ARM', |
| 45 ], | 46 ], |
| 46 }], | 47 }], |
| 47 ['target_arch=="ia32"', { | 48 ['target_arch=="ia32"', { |
| 48 'defines': [ | 49 'defines': [ |
| 49 'V8_TARGET_ARCH_IA32', | 50 'V8_TARGET_ARCH_IA32', |
| (...skipping 623 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 673 ], | 674 ], |
| 674 'conditions': [ | 675 'conditions': [ |
| 675 [ 'OS=="win"', { | 676 [ 'OS=="win"', { |
| 676 # This could be gotten by not setting chromium_code, if that's OK. | 677 # This could be gotten by not setting chromium_code, if that's OK. |
| 677 'defines': ['_CRT_SECURE_NO_WARNINGS'], | 678 'defines': ['_CRT_SECURE_NO_WARNINGS'], |
| 678 }], | 679 }], |
| 679 ], | 680 ], |
| 680 }, | 681 }, |
| 681 ], | 682 ], |
| 682 } | 683 } |
| OLD | NEW |