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

Side by Side Diff: build/toolchain.gypi

Issue 862363002: Try to fix AOSP builder. (Closed) Base URL: https://chromium.googlesource.com/v8/v8.git@master
Patch Set: Created 5 years, 11 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
« no previous file with comments | « no previous file | 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 2013 the V8 project authors. All rights reserved. 1 # Copyright 2013 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 211 matching lines...) Expand 10 before | Expand all | Expand 10 after
222 [ 'arm_thumb==1', { 222 [ 'arm_thumb==1', {
223 'cflags': ['-mthumb',], 223 'cflags': ['-mthumb',],
224 }], 224 }],
225 [ 'arm_thumb==0', { 225 [ 'arm_thumb==0', {
226 'cflags': ['-marm',], 226 'cflags': ['-marm',],
227 }], 227 }],
228 ], 228 ],
229 }, { 229 }, {
230 # 'v8_target_arch!=target_arch' 230 # 'v8_target_arch!=target_arch'
231 # Target not built with an Arm CXX compiler (simulator build). 231 # Target not built with an Arm CXX compiler (simulator build).
232 'cflags': [
233 '-msse2',
234 '-mfpmath=sse',
235 '-mmmx', # Allows mmintrin.h for MMX intrinsics.
236 ],
237 'conditions': [ 232 'conditions': [
238 [ 'arm_float_abi=="hard"', { 233 [ 'arm_float_abi=="hard"', {
239 'defines': [ 234 'defines': [
240 'USE_EABI_HARDFLOAT=1', 235 'USE_EABI_HARDFLOAT=1',
241 ], 236 ],
242 }], 237 }],
243 [ 'arm_float_abi=="softfp" or arm_float_abi=="default"', { 238 [ 'arm_float_abi=="softfp" or arm_float_abi=="default"', {
244 'defines': [ 239 'defines': [
245 'USE_EABI_HARDFLOAT=0', 240 'USE_EABI_HARDFLOAT=0',
246 ], 241 ],
(...skipping 900 matching lines...) Expand 10 before | Expand all | Expand 10 after
1147 ['v8_enable_slow_dchecks==1', { 1142 ['v8_enable_slow_dchecks==1', {
1148 'defines': [ 1143 'defines': [
1149 'ENABLE_SLOW_DCHECKS', 1144 'ENABLE_SLOW_DCHECKS',
1150 ], 1145 ],
1151 }], 1146 }],
1152 ], # conditions 1147 ], # conditions
1153 }, # Release 1148 }, # Release
1154 }, # configurations 1149 }, # configurations
1155 }, # target_defaults 1150 }, # target_defaults
1156 } 1151 }
OLDNEW
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698