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 74 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
85 | 85 |
86 # Some versions of GCC 4.5 seem to need -fno-strict-aliasing. | 86 # Some versions of GCC 4.5 seem to need -fno-strict-aliasing. |
87 'v8_no_strict_aliasing%': 0, | 87 'v8_no_strict_aliasing%': 0, |
88 | 88 |
89 # Chrome needs this definition unconditionally. For standalone V8 builds, | 89 # Chrome needs this definition unconditionally. For standalone V8 builds, |
90 # it's handled in build/standalone.gypi. | 90 # it's handled in build/standalone.gypi. |
91 'want_separate_host_toolset%': 1, | 91 'want_separate_host_toolset%': 1, |
92 | 92 |
93 'v8_use_snapshot%': 'true', | 93 'v8_use_snapshot%': 'true', |
94 'host_os%': '<(OS)', | 94 'host_os%': '<(OS)', |
95 'v8_use_liveobjectlist%': 'false', | |
96 'werror%': '-Werror', | 95 'werror%': '-Werror', |
97 | 96 |
98 # With post mortem support enabled, metadata is embedded into libv8 that | 97 # With post mortem support enabled, metadata is embedded into libv8 that |
99 # describes various parameters of the VM for use by debuggers. See | 98 # describes various parameters of the VM for use by debuggers. See |
100 # tools/gen-postmortem-metadata.py for details. | 99 # tools/gen-postmortem-metadata.py for details. |
101 'v8_postmortem_support%': 'false', | 100 'v8_postmortem_support%': 'false', |
102 | 101 |
103 # For a shared library build, results in "libv8-<(soname_version).so". | 102 # For a shared library build, results in "libv8-<(soname_version).so". |
104 'soname_version%': '', | 103 'soname_version%': '', |
105 | 104 |
(...skipping 144 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
250 'xcode_settings': { | 249 'xcode_settings': { |
251 'ARCHS': [ 'x86_64' ], | 250 'ARCHS': [ 'x86_64' ], |
252 }, | 251 }, |
253 'msvs_settings': { | 252 'msvs_settings': { |
254 'VCLinkerTool': { | 253 'VCLinkerTool': { |
255 'StackReserveSize': '2097152', | 254 'StackReserveSize': '2097152', |
256 }, | 255 }, |
257 }, | 256 }, |
258 'msvs_configuration_platform': 'x64', | 257 'msvs_configuration_platform': 'x64', |
259 }], # v8_target_arch=="x64" | 258 }], # v8_target_arch=="x64" |
260 ['v8_use_liveobjectlist=="true"', { | |
261 'defines': [ | |
262 'ENABLE_DEBUGGER_SUPPORT', | |
263 'INSPECTOR', | |
264 'OBJECT_PRINT', | |
265 'LIVEOBJECTLIST', | |
266 ], | |
267 }], | |
268 ['v8_compress_startup_data=="bz2"', { | 259 ['v8_compress_startup_data=="bz2"', { |
269 'defines': [ | 260 'defines': [ |
270 'COMPRESS_STARTUP_DATA_BZ2', | 261 'COMPRESS_STARTUP_DATA_BZ2', |
271 ], | 262 ], |
272 }], | 263 }], |
273 ['OS=="win"', { | 264 ['OS=="win"', { |
274 'defines': [ | 265 'defines': [ |
275 'WIN32', | 266 'WIN32', |
276 ], | 267 ], |
277 'msvs_configuration_attributes': { | 268 'msvs_configuration_attributes': { |
(...skipping 186 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
464 'OptimizeReferences': '2', | 455 'OptimizeReferences': '2', |
465 'EnableCOMDATFolding': '2', | 456 'EnableCOMDATFolding': '2', |
466 }, | 457 }, |
467 }, | 458 }, |
468 }], # OS=="win" | 459 }], # OS=="win" |
469 ], # conditions | 460 ], # conditions |
470 }, # Release | 461 }, # Release |
471 }, # configurations | 462 }, # configurations |
472 }, # target_defaults | 463 }, # target_defaults |
473 } | 464 } |
OLD | NEW |