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 58 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
69 ['(v8_target_arch=="arm" and host_arch!="arm") or \ | 69 ['(v8_target_arch=="arm" and host_arch!="arm") or \ |
70 (v8_target_arch=="mipsel" and host_arch!="mipsel") or \ | 70 (v8_target_arch=="mipsel" and host_arch!="mipsel") or \ |
71 (v8_target_arch=="x64" and host_arch!="x64") or \ | 71 (v8_target_arch=="x64" and host_arch!="x64") or \ |
72 (OS=="android")', { | 72 (OS=="android")', { |
73 'want_separate_host_toolset': 1, | 73 'want_separate_host_toolset': 1, |
74 }, { | 74 }, { |
75 'want_separate_host_toolset': 0, | 75 'want_separate_host_toolset': 0, |
76 }], | 76 }], |
77 ], | 77 ], |
78 # Default ARM variable settings. | 78 # Default ARM variable settings. |
79 'armv7%': 1, | 79 'armv7%': 'default', |
80 'arm_neon%': 0, | 80 'arm_neon%': 0, |
81 'arm_fpu%': 'vfpv3', | 81 'arm_fpu%': 'vfpv3', |
| 82 'arm_float_abi%': 'default', |
| 83 'arm_thumb': 'default', |
82 }, | 84 }, |
83 'target_defaults': { | 85 'target_defaults': { |
84 'default_configuration': 'Debug', | 86 'default_configuration': 'Debug', |
85 'configurations': { | 87 'configurations': { |
86 'Debug': { | 88 'Debug': { |
87 'cflags': [ '-g', '-O0' ], | 89 'cflags': [ '-g', '-O0' ], |
88 }, | 90 }, |
89 'Release': { | 91 'Release': { |
90 # Xcode insists on this empty entry. | 92 # Xcode insists on this empty entry. |
91 }, | 93 }, |
(...skipping 122 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
214 }, | 216 }, |
215 'target_conditions': [ | 217 'target_conditions': [ |
216 ['_type!="static_library"', { | 218 ['_type!="static_library"', { |
217 'xcode_settings': {'OTHER_LDFLAGS': ['-Wl,-search_paths_first']}, | 219 'xcode_settings': {'OTHER_LDFLAGS': ['-Wl,-search_paths_first']}, |
218 }], | 220 }], |
219 ], # target_conditions | 221 ], # target_conditions |
220 }, # target_defaults | 222 }, # target_defaults |
221 }], # OS=="mac" | 223 }], # OS=="mac" |
222 ], | 224 ], |
223 } | 225 } |
OLD | NEW |