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

Side by Side Diff: build/standalone.gypi

Issue 98543008: Switch armv7 setting to arm_version=7 in v8 gyp files (Closed) Base URL: git://github.com/v8/v8.git@master
Patch Set: fixed Makefile Created 7 years 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
« no previous file with comments | « build/android.gypi ('k') | build/toolchain.gypi » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
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 99 matching lines...) Expand 10 before | Expand all | Expand 10 after
110 'os_posix%': 1, 110 'os_posix%': 1,
111 }], 111 }],
112 ['(v8_target_arch=="ia32" or v8_target_arch=="x64") and \ 112 ['(v8_target_arch=="ia32" or v8_target_arch=="x64") and \
113 (OS=="linux" or OS=="mac")', { 113 (OS=="linux" or OS=="mac")', {
114 'v8_enable_gdbjit%': 1, 114 'v8_enable_gdbjit%': 1,
115 }, { 115 }, {
116 'v8_enable_gdbjit%': 0, 116 'v8_enable_gdbjit%': 0,
117 }], 117 }],
118 ], 118 ],
119 # Default ARM variable settings. 119 # Default ARM variable settings.
120 'armv7%': 'default', 120 'arm_version%': 'default',
121 'arm_neon%': 0, 121 'arm_neon%': 0,
122 'arm_fpu%': 'vfpv3', 122 'arm_fpu%': 'vfpv3',
123 'arm_float_abi%': 'default', 123 'arm_float_abi%': 'default',
124 'arm_thumb': 'default', 124 'arm_thumb': 'default',
125 }, 125 },
126 'target_defaults': { 126 'target_defaults': {
127 'variables': { 127 'variables': {
128 'v8_code%': '<(v8_code)', 128 'v8_code%': '<(v8_code)',
129 }, 129 },
130 'default_configuration': 'Debug', 130 'default_configuration': 'Debug',
(...skipping 169 matching lines...) Expand 10 before | Expand all | Expand 10 after
300 ], 300 ],
301 'target_conditions': [ 301 'target_conditions': [
302 ['_type!="static_library"', { 302 ['_type!="static_library"', {
303 'xcode_settings': {'OTHER_LDFLAGS': ['-Wl,-search_paths_first']}, 303 'xcode_settings': {'OTHER_LDFLAGS': ['-Wl,-search_paths_first']},
304 }], 304 }],
305 ], # target_conditions 305 ], # target_conditions
306 }, # target_defaults 306 }, # target_defaults
307 }], # OS=="mac" 307 }], # OS=="mac"
308 ], 308 ],
309 } 309 }
OLDNEW
« no previous file with comments | « build/android.gypi ('k') | build/toolchain.gypi » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698