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 42 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
53 # Setting v8_use_arm_eabi_hardfloat to true will turn on V8 support for ARM | 53 # Setting v8_use_arm_eabi_hardfloat to true will turn on V8 support for ARM |
54 # EABI calling convention where double arguments are passed in VFP | 54 # EABI calling convention where double arguments are passed in VFP |
55 # registers. Note that the GCC flag '-mfloat-abi=hard' should be used as | 55 # registers. Note that the GCC flag '-mfloat-abi=hard' should be used as |
56 # well when compiling for the ARM target. | 56 # well when compiling for the ARM target. |
57 'v8_use_arm_eabi_hardfloat%': 'false', | 57 'v8_use_arm_eabi_hardfloat%': 'false', |
58 | 58 |
59 'v8_enable_debugger_support%': 1, | 59 'v8_enable_debugger_support%': 1, |
60 | 60 |
61 'v8_enable_disassembler%': 0, | 61 'v8_enable_disassembler%': 0, |
62 | 62 |
| 63 'v8_object_print%': 0, |
| 64 |
63 'v8_enable_gdbjit%': 0, | 65 'v8_enable_gdbjit%': 0, |
64 | 66 |
65 # Enable profiling support. Only required on Windows. | 67 # Enable profiling support. Only required on Windows. |
66 'v8_enable_prof%': 0, | 68 'v8_enable_prof%': 0, |
67 | 69 |
68 # Chrome needs this definition unconditionally. For standalone V8 builds, | 70 # Chrome needs this definition unconditionally. For standalone V8 builds, |
69 # it's handled in build/standalone.gypi. | 71 # it's handled in build/standalone.gypi. |
70 'want_separate_host_toolset%': 1, | 72 'want_separate_host_toolset%': 1, |
71 | 73 |
72 'v8_use_snapshot%': 'true', | 74 'v8_use_snapshot%': 'true', |
73 'host_os%': '<(OS)', | 75 'host_os%': '<(OS)', |
74 'v8_use_liveobjectlist%': 'false', | 76 'v8_use_liveobjectlist%': 'false', |
75 | 77 |
76 # For a shared library build, results in "libv8-<(soname_version).so". | 78 # For a shared library build, results in "libv8-<(soname_version).so". |
77 'soname_version%': '', | 79 'soname_version%': '', |
78 }, | 80 }, |
79 'target_defaults': { | 81 'target_defaults': { |
80 'conditions': [ | 82 'conditions': [ |
81 ['v8_enable_debugger_support==1', { | 83 ['v8_enable_debugger_support==1', { |
82 'defines': ['ENABLE_DEBUGGER_SUPPORT',], | 84 'defines': ['ENABLE_DEBUGGER_SUPPORT',], |
83 }], | 85 }], |
84 ['v8_enable_disassembler==1', { | 86 ['v8_enable_disassembler==1', { |
85 'defines': ['ENABLE_DISASSEMBLER',], | 87 'defines': ['ENABLE_DISASSEMBLER',], |
86 }], | 88 }], |
| 89 ['v8_object_print==1', { |
| 90 'defines': ['OBJECT_PRINT',], |
| 91 }], |
87 ['v8_enable_gdbjit==1', { | 92 ['v8_enable_gdbjit==1', { |
88 'defines': ['ENABLE_GDB_JIT_INTERFACE',], | 93 'defines': ['ENABLE_GDB_JIT_INTERFACE',], |
89 }], | 94 }], |
90 ['OS!="mac"', { | 95 ['OS!="mac"', { |
91 # TODO(mark): The OS!="mac" conditional is temporary. It can be | 96 # TODO(mark): The OS!="mac" conditional is temporary. It can be |
92 # removed once the Mac Chromium build stops setting target_arch to | 97 # removed once the Mac Chromium build stops setting target_arch to |
93 # ia32 and instead sets it to mac. Other checks in this file for | 98 # ia32 and instead sets it to mac. Other checks in this file for |
94 # OS=="mac" can be removed at that time as well. This can be cleaned | 99 # OS=="mac" can be removed at that time as well. This can be cleaned |
95 # up once http://crbug.com/44205 is fixed. | 100 # up once http://crbug.com/44205 is fixed. |
96 'conditions': [ | 101 'conditions': [ |
(...skipping 198 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
295 # some test cases can cause stack overflow. | 300 # some test cases can cause stack overflow. |
296 # 'StackReserveSize': '297152', | 301 # 'StackReserveSize': '297152', |
297 }, | 302 }, |
298 }, | 303 }, |
299 }], | 304 }], |
300 ], | 305 ], |
301 }, | 306 }, |
302 }, | 307 }, |
303 }, | 308 }, |
304 } | 309 } |
OLD | NEW |