| 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 14 matching lines...) Expand all Loading... |
| 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 'use_system_v8%': 0, | 30 'use_system_v8%': 0, |
| 31 'msvs_use_common_release': 0, | 31 'msvs_use_common_release': 0, |
| 32 'gcc_version%': 'unknown', | 32 'gcc_version%': 'unknown', |
| 33 'v8_target_arch%': '<(target_arch)', | 33 'v8_target_arch%': '<(target_arch)', |
| 34 'v8_use_snapshot%': 'true', | 34 'v8_use_snapshot%': 'true', |
| 35 'v8_use_liveobjectlist%': 'false', |
| 35 }, | 36 }, |
| 36 'conditions': [ | 37 'conditions': [ |
| 37 ['use_system_v8==0', { | 38 ['use_system_v8==0', { |
| 38 'target_defaults': { | 39 'target_defaults': { |
| 39 'defines': [ | 40 'defines': [ |
| 40 'ENABLE_LOGGING_AND_PROFILING', | 41 'ENABLE_LOGGING_AND_PROFILING', |
| 41 'ENABLE_DEBUGGER_SUPPORT', | 42 'ENABLE_DEBUGGER_SUPPORT', |
| 42 'ENABLE_VMSTATE_TRACKING', | 43 'ENABLE_VMSTATE_TRACKING', |
| 43 ], | 44 ], |
| 44 'conditions': [ | 45 'conditions': [ |
| (...skipping 14 matching lines...) Expand all Loading... |
| 59 'V8_TARGET_ARCH_IA32', | 60 'V8_TARGET_ARCH_IA32', |
| 60 ], | 61 ], |
| 61 }], | 62 }], |
| 62 ['v8_target_arch=="x64"', { | 63 ['v8_target_arch=="x64"', { |
| 63 'defines': [ | 64 'defines': [ |
| 64 'V8_TARGET_ARCH_X64', | 65 'V8_TARGET_ARCH_X64', |
| 65 ], | 66 ], |
| 66 }], | 67 }], |
| 67 ], | 68 ], |
| 68 }], | 69 }], |
| 70 ['v8_use_liveobjectlist=="true"', { |
| 71 'defines': [ |
| 72 'ENABLE_DEBUGGER_SUPPORT', |
| 73 'INSPECTOR', |
| 74 'OBJECT_PRINT', |
| 75 'LIVEOBJECTLIST', |
| 76 ], |
| 77 }], |
| 69 ], | 78 ], |
| 70 'configurations': { | 79 'configurations': { |
| 71 'Debug': { | 80 'Debug': { |
| 72 'defines': [ | 81 'defines': [ |
| 73 'DEBUG', | 82 'DEBUG', |
| 74 '_DEBUG', | 83 '_DEBUG', |
| 75 'ENABLE_DISASSEMBLER', | 84 'ENABLE_DISASSEMBLER', |
| 76 'V8_ENABLE_CHECKS', | 85 'V8_ENABLE_CHECKS', |
| 77 'OBJECT_PRINT', | 86 'OBJECT_PRINT', |
| 78 ], | 87 ], |
| (...skipping 331 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 410 '../../src/heap.h', | 419 '../../src/heap.h', |
| 411 '../../src/heap-profiler.cc', | 420 '../../src/heap-profiler.cc', |
| 412 '../../src/heap-profiler.h', | 421 '../../src/heap-profiler.h', |
| 413 '../../src/hydrogen.cc', | 422 '../../src/hydrogen.cc', |
| 414 '../../src/hydrogen.h', | 423 '../../src/hydrogen.h', |
| 415 '../../src/hydrogen-instructions.cc', | 424 '../../src/hydrogen-instructions.cc', |
| 416 '../../src/hydrogen-instructions.h', | 425 '../../src/hydrogen-instructions.h', |
| 417 '../../src/ic-inl.h', | 426 '../../src/ic-inl.h', |
| 418 '../../src/ic.cc', | 427 '../../src/ic.cc', |
| 419 '../../src/ic.h', | 428 '../../src/ic.h', |
| 429 '../../src/inspector.cc', |
| 430 '../../src/inspector.h', |
| 420 '../../src/interpreter-irregexp.cc', | 431 '../../src/interpreter-irregexp.cc', |
| 421 '../../src/interpreter-irregexp.h', | 432 '../../src/interpreter-irregexp.h', |
| 422 '../../src/jump-target-inl.h', | 433 '../../src/jump-target-inl.h', |
| 423 '../../src/jump-target.cc', | 434 '../../src/jump-target.cc', |
| 424 '../../src/jump-target.h', | 435 '../../src/jump-target.h', |
| 425 '../../src/jsregexp.cc', | 436 '../../src/jsregexp.cc', |
| 426 '../../src/jsregexp.h', | 437 '../../src/jsregexp.h', |
| 427 '../../src/list-inl.h', | 438 '../../src/list-inl.h', |
| 428 '../../src/list.h', | 439 '../../src/list.h', |
| 429 '../../src/lithium.cc', | 440 '../../src/lithium.cc', |
| 430 '../../src/lithium.h', | 441 '../../src/lithium.h', |
| 431 '../../src/lithium-allocator.cc', | 442 '../../src/lithium-allocator.cc', |
| 432 '../../src/lithium-allocator.h', | 443 '../../src/lithium-allocator.h', |
| 433 '../../src/liveedit.cc', | 444 '../../src/liveedit.cc', |
| 434 '../../src/liveedit.h', | 445 '../../src/liveedit.h', |
| 446 '../../src/liveobjectlist-inl.h', |
| 447 '../../src/liveobjectlist.cc', |
| 448 '../../src/liveobjectlist.h', |
| 435 '../../src/log-inl.h', | 449 '../../src/log-inl.h', |
| 436 '../../src/log-utils.cc', | 450 '../../src/log-utils.cc', |
| 437 '../../src/log-utils.h', | 451 '../../src/log-utils.h', |
| 438 '../../src/log.cc', | 452 '../../src/log.cc', |
| 439 '../../src/log.h', | 453 '../../src/log.h', |
| 440 '../../src/macro-assembler.h', | 454 '../../src/macro-assembler.h', |
| 441 '../../src/mark-compact.cc', | 455 '../../src/mark-compact.cc', |
| 442 '../../src/mark-compact.h', | 456 '../../src/mark-compact.h', |
| 443 '../../src/memory.h', | 457 '../../src/memory.h', |
| 444 '../../src/messages.cc', | 458 '../../src/messages.cc', |
| (...skipping 399 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 844 'target_name': 'v8_shell', | 858 'target_name': 'v8_shell', |
| 845 'type': 'none', | 859 'type': 'none', |
| 846 'dependencies': [ | 860 'dependencies': [ |
| 847 'v8' | 861 'v8' |
| 848 ], | 862 ], |
| 849 }, | 863 }, |
| 850 ], | 864 ], |
| 851 }], | 865 }], |
| 852 ], | 866 ], |
| 853 } | 867 } |
| OLD | NEW |