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 37 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
48 # probing when running on the target. | 48 # probing when running on the target. |
49 'v8_can_use_vfp_instructions%': 'false', | 49 'v8_can_use_vfp_instructions%': 'false', |
50 | 50 |
51 # Setting v8_use_arm_eabi_hardfloat to true will turn on V8 support for ARM | 51 # Setting v8_use_arm_eabi_hardfloat to true will turn on V8 support for ARM |
52 # EABI calling convention where double arguments are passed in VFP | 52 # EABI calling convention where double arguments are passed in VFP |
53 # registers. Note that the GCC flag '-mfloat-abi=hard' should be used as | 53 # registers. Note that the GCC flag '-mfloat-abi=hard' should be used as |
54 # well when compiling for the ARM target. | 54 # well when compiling for the ARM target. |
55 'v8_use_arm_eabi_hardfloat%': 'false', | 55 'v8_use_arm_eabi_hardfloat%': 'false', |
56 | 56 |
57 'v8_use_snapshot%': 'true', | 57 'v8_use_snapshot%': 'true', |
58 'host_os%': '<(OS)', | |
58 'v8_use_liveobjectlist%': 'false', | 59 'v8_use_liveobjectlist%': 'false', |
59 }, | 60 }, |
60 'conditions': [ | 61 'conditions': [ |
61 ['use_system_v8==0', { | 62 ['use_system_v8==0', { |
62 'target_defaults': { | 63 'target_defaults': { |
63 'defines': [ | 64 'defines': [ |
64 'ENABLE_LOGGING_AND_PROFILING', | 65 'ENABLE_LOGGING_AND_PROFILING', |
65 'ENABLE_DEBUGGER_SUPPORT', | 66 'ENABLE_DEBUGGER_SUPPORT', |
66 'ENABLE_VMSTATE_TRACKING', | 67 'ENABLE_VMSTATE_TRACKING', |
67 'V8_FAST_TLS', | 68 'V8_FAST_TLS', |
(...skipping 787 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
855 '<@(experimental_library_files)' | 856 '<@(experimental_library_files)' |
856 ], | 857 ], |
857 }, | 858 }, |
858 ], | 859 ], |
859 }, | 860 }, |
860 { | 861 { |
861 'target_name': 'mksnapshot', | 862 'target_name': 'mksnapshot', |
862 'type': 'executable', | 863 'type': 'executable', |
863 'toolsets': ['host'], | 864 'toolsets': ['host'], |
864 'dependencies': [ | 865 'dependencies': [ |
866 'v8_base', | |
Mads Ager (chromium)
2011/05/23 15:26:26
I don't understand why this should be needed? v8_n
Søren Thygesen Gjesse
2011/05/24 13:20:42
Right, removed.
| |
865 'v8_nosnapshot', | 867 'v8_nosnapshot', |
866 ], | 868 ], |
867 'include_dirs+': [ | 869 'include_dirs+': [ |
868 '../../src', | 870 '../../src', |
869 ], | 871 ], |
870 'sources': [ | 872 'sources': [ |
871 '../../src/mksnapshot.cc', | 873 '../../src/mksnapshot.cc', |
872 ], | 874 ], |
873 'conditions': [ | 875 'conditions': [ |
874 # The ARM assembler assumes the host is 32 bits, so force building | 876 # The ARM assembler assumes the host is 32 bits, so force building |
(...skipping 44 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
919 'target_name': 'v8_shell', | 921 'target_name': 'v8_shell', |
920 'type': 'none', | 922 'type': 'none', |
921 'dependencies': [ | 923 'dependencies': [ |
922 'v8' | 924 'v8' |
923 ], | 925 ], |
924 }, | 926 }, |
925 ], | 927 ], |
926 }], | 928 }], |
927 ], | 929 ], |
928 } | 930 } |
OLD | NEW |