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

Side by Side Diff: build/common.gypi

Issue 8631012: Upstream Android V8 change. (Closed) Base URL: http://v8.googlecode.com/svn/trunk/
Patch Set: Created 9 years, 1 month 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 | « no previous file | tools/gyp/v8.gyp » ('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 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 123 matching lines...) Expand 10 before | Expand all | Expand 10 after
134 'cflags': [ 134 'cflags': [
135 '-mfloat-abi=hard', 135 '-mfloat-abi=hard',
136 ], 136 ],
137 }, { 137 }, {
138 'defines': [ 138 'defines': [
139 'USE_EABI_HARDFLOAT=0', 139 'USE_EABI_HARDFLOAT=0',
140 ], 140 ],
141 }], 141 }],
142 # The ARM assembler assumes the host is 32 bits, 142 # The ARM assembler assumes the host is 32 bits,
143 # so force building 32-bit host tools. 143 # so force building 32-bit host tools.
144 ['host_arch=="x64"', { 144 ['host_arch=="x64" or OS=="android"', {
Jakob Kummerow 2011/11/23 09:46:16 This is a little hacky, but it's OK for now. Mediu
145 'target_conditions': [ 145 'target_conditions': [
146 ['_toolset=="host"', { 146 ['_toolset=="host"', {
147 'cflags': ['-m32'], 147 'cflags': ['-m32'],
148 'ldflags': ['-m32'], 148 'ldflags': ['-m32'],
149 }], 149 }],
150 ], 150 ],
151 }], 151 }],
152 ], 152 ],
153 }], 153 }],
154 ['v8_target_arch=="ia32"', { 154 ['v8_target_arch=="ia32"', {
(...skipping 179 matching lines...) Expand 10 before | Expand all | Expand 10 after
334 # some test cases can cause stack overflow. 334 # some test cases can cause stack overflow.
335 # 'StackReserveSize': '297152', 335 # 'StackReserveSize': '297152',
336 }, 336 },
337 }, 337 },
338 }], 338 }],
339 ], 339 ],
340 }, 340 },
341 }, 341 },
342 }, 342 },
343 } 343 }
OLDNEW
« no previous file with comments | « no previous file | tools/gyp/v8.gyp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698