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 13 matching lines...) Expand all Loading... |
24 # THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT | 24 # THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT |
25 # (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE | 25 # (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE |
26 # OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. | 26 # OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. |
27 | 27 |
28 { | 28 { |
29 'variables': { | 29 'variables': { |
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', | |
35 }, | 34 }, |
36 'target_defaults': { | 35 'target_defaults': { |
37 'defines': [ | 36 'defines': [ |
38 'ENABLE_LOGGING_AND_PROFILING', | 37 'ENABLE_LOGGING_AND_PROFILING', |
39 'ENABLE_DEBUGGER_SUPPORT', | 38 'ENABLE_DEBUGGER_SUPPORT', |
40 ], | 39 ], |
41 'conditions': [ | 40 'conditions': [ |
42 ['target_arch=="arm"', { | 41 ['target_arch=="arm"', { |
43 'defines': [ | 42 'defines': [ |
44 'V8_TARGET_ARCH_ARM', | 43 'V8_TARGET_ARCH_ARM', |
45 ], | 44 ], |
46 }], | 45 }], |
47 ['target_arch=="ia32"', { | 46 ['target_arch=="ia32"', { |
48 'defines': [ | 47 'defines': [ |
49 'V8_TARGET_ARCH_IA32', | 48 'V8_TARGET_ARCH_IA32', |
50 'V8_NATIVE_REGEXP', | |
51 ], | 49 ], |
52 }], | 50 }], |
53 ['target_arch=="x64"', { | 51 ['target_arch=="x64"', { |
54 'defines': [ | 52 'defines': [ |
55 'V8_TARGET_ARCH_X64', | 53 'V8_TARGET_ARCH_X64', |
56 'V8_NATIVE_REGEXP', | |
57 ], | 54 ], |
58 }], | 55 }], |
59 ], | 56 ], |
60 'configurations': { | 57 'configurations': { |
61 'Debug': { | 58 'Debug': { |
62 'defines': [ | 59 'defines': [ |
63 'DEBUG', | 60 'DEBUG', |
64 '_DEBUG', | 61 '_DEBUG', |
65 'ENABLE_DISASSEMBLER', | 62 'ENABLE_DISASSEMBLER', |
66 'V8_ENABLE_CHECKS' | 63 'V8_ENABLE_CHECKS' |
(...skipping 606 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
673 ], | 670 ], |
674 'conditions': [ | 671 'conditions': [ |
675 [ 'OS=="win"', { | 672 [ 'OS=="win"', { |
676 # This could be gotten by not setting chromium_code, if that's OK. | 673 # This could be gotten by not setting chromium_code, if that's OK. |
677 'defines': ['_CRT_SECURE_NO_WARNINGS'], | 674 'defines': ['_CRT_SECURE_NO_WARNINGS'], |
678 }], | 675 }], |
679 ], | 676 ], |
680 }, | 677 }, |
681 ], | 678 ], |
682 } | 679 } |
OLD | NEW |