Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(6)

Side by Side Diff: tools/gyp/v8.gyp

Issue 6904164: ARM: Changed the handling of compiletime CPU feature detection (Closed) Base URL: https://v8.googlecode.com/svn/branches/bleeding_edge
Patch Set: Created 9 years, 7 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch | Annotate | Revision Log
« no previous file with comments | « src/platform-linux.cc ('k') | no next file » | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
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
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_compress_startup_data%': 'false', 33 'v8_compress_startup_data%': 'false',
34 'v8_target_arch%': '<(target_arch)', 34 'v8_target_arch%': '<(target_arch)',
35 'v8_can_use_vfp_instructions%': 'false',
35 'v8_use_snapshot%': 'true', 36 'v8_use_snapshot%': 'true',
36 'v8_use_liveobjectlist%': 'false', 37 'v8_use_liveobjectlist%': 'false',
37 }, 38 },
38 'conditions': [ 39 'conditions': [
39 ['use_system_v8==0', { 40 ['use_system_v8==0', {
40 'target_defaults': { 41 'target_defaults': {
41 'defines': [ 42 'defines': [
42 'ENABLE_LOGGING_AND_PROFILING', 43 'ENABLE_LOGGING_AND_PROFILING',
43 'ENABLE_DEBUGGER_SUPPORT', 44 'ENABLE_DEBUGGER_SUPPORT',
44 'ENABLE_VMSTATE_TRACKING', 45 'ENABLE_VMSTATE_TRACKING',
45 'V8_FAST_TLS', 46 'V8_FAST_TLS',
46 ], 47 ],
47 'conditions': [ 48 'conditions': [
48 ['OS!="mac"', { 49 ['OS!="mac"', {
49 # TODO(mark): The OS!="mac" conditional is temporary. It can be 50 # TODO(mark): The OS!="mac" conditional is temporary. It can be
50 # removed once the Mac Chromium build stops setting target_arch to 51 # removed once the Mac Chromium build stops setting target_arch to
51 # ia32 and instead sets it to mac. Other checks in this file for 52 # ia32 and instead sets it to mac. Other checks in this file for
52 # OS=="mac" can be removed at that time as well. This can be cleaned 53 # OS=="mac" can be removed at that time as well. This can be cleaned
53 # up once http://crbug.com/44205 is fixed. 54 # up once http://crbug.com/44205 is fixed.
54 'conditions': [ 55 'conditions': [
55 ['v8_target_arch=="arm"', { 56 ['v8_target_arch=="arm"', {
56 'defines': [ 57 'defines': [
57 'V8_TARGET_ARCH_ARM', 58 'V8_TARGET_ARCH_ARM',
58 ], 59 ],
60 'conditions': [
61 [ 'v8_can_use_vfp_instructions=="true"', {
62 'defines': [
63 'CAN_USE_VFP_INSTRUCTIONS',
64 ],
65 }],
66 ],
59 }], 67 }],
60 ['v8_target_arch=="ia32"', { 68 ['v8_target_arch=="ia32"', {
61 'defines': [ 69 'defines': [
62 'V8_TARGET_ARCH_IA32', 70 'V8_TARGET_ARCH_IA32',
63 ], 71 ],
64 }], 72 }],
65 ['v8_target_arch=="x64"', { 73 ['v8_target_arch=="x64"', {
66 'defines': [ 74 'defines': [
67 'V8_TARGET_ARCH_X64', 75 'V8_TARGET_ARCH_X64',
68 ], 76 ],
(...skipping 772 matching lines...) Expand 10 before | Expand all | Expand 10 after
841 'target_name': 'v8_shell', 849 'target_name': 'v8_shell',
842 'type': 'none', 850 'type': 'none',
843 'dependencies': [ 851 'dependencies': [
844 'v8' 852 'v8'
845 ], 853 ],
846 }, 854 },
847 ], 855 ],
848 }], 856 }],
849 ], 857 ],
850 } 858 }
OLDNEW
« no previous file with comments | « src/platform-linux.cc ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698