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

Side by Side Diff: build/standalone.gypi

Issue 264593002: ARM: update defaults for flags (Closed) Base URL: https://v8.googlecode.com/svn/branches/bleeding_edge
Patch Set: review fix Created 6 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 | « Makefile ('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 106 matching lines...) Expand 10 before | Expand all | Expand 10 after
117 }], 117 }],
118 ['(v8_target_arch=="ia32" or v8_target_arch=="x64") and \ 118 ['(v8_target_arch=="ia32" or v8_target_arch=="x64") and \
119 (OS=="linux" or OS=="mac")', { 119 (OS=="linux" or OS=="mac")', {
120 'v8_enable_gdbjit%': 1, 120 'v8_enable_gdbjit%': 1,
121 }, { 121 }, {
122 'v8_enable_gdbjit%': 0, 122 'v8_enable_gdbjit%': 0,
123 }], 123 }],
124 ], 124 ],
125 # Default ARM variable settings. 125 # Default ARM variable settings.
126 'arm_version%': 'default', 126 'arm_version%': 'default',
127 'arm_neon%': 0,
128 'arm_fpu%': 'vfpv3', 127 'arm_fpu%': 'vfpv3',
129 'arm_float_abi%': 'default', 128 'arm_float_abi%': 'default',
130 'arm_thumb': 'default', 129 'arm_thumb': 'default',
131 }, 130 },
132 'target_defaults': { 131 'target_defaults': {
133 'variables': { 132 'variables': {
134 'v8_code%': '<(v8_code)', 133 'v8_code%': '<(v8_code)',
135 }, 134 },
136 'default_configuration': 'Debug', 135 'default_configuration': 'Debug',
137 'configurations': { 136 'configurations': {
(...skipping 220 matching lines...) Expand 10 before | Expand all | Expand 10 after
358 ], 357 ],
359 'target_conditions': [ 358 'target_conditions': [
360 ['_type!="static_library"', { 359 ['_type!="static_library"', {
361 'xcode_settings': {'OTHER_LDFLAGS': ['-Wl,-search_paths_first']}, 360 'xcode_settings': {'OTHER_LDFLAGS': ['-Wl,-search_paths_first']},
362 }], 361 }],
363 ], # target_conditions 362 ], # target_conditions
364 }, # target_defaults 363 }, # target_defaults
365 }], # OS=="mac" 364 }], # OS=="mac"
366 ], 365 ],
367 } 366 }
OLDNEW
« no previous file with comments | « Makefile ('k') | build/toolchain.gypi » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698