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

Side by Side Diff: build/common.gypi

Issue 9693052: Fix common.gypi after r11032 (Closed) Base URL: https://v8.googlecode.com/svn/branches/bleeding_edge
Patch Set: Created 8 years, 9 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 | « 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 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 167 matching lines...) Expand 10 before | Expand all | Expand 10 after
178 'cflags': ['-EL'], 178 'cflags': ['-EL'],
179 'ldflags': ['-EL'], 179 'ldflags': ['-EL'],
180 'conditions': [ 180 'conditions': [
181 [ 'v8_use_mips_abi_hardfloat=="true"', { 181 [ 'v8_use_mips_abi_hardfloat=="true"', {
182 'cflags': ['-mhard-float'], 182 'cflags': ['-mhard-float'],
183 'ldflags': ['-mhard-float'], 183 'ldflags': ['-mhard-float'],
184 }, { 184 }, {
185 'cflags': ['-msoft-float'], 185 'cflags': ['-msoft-float'],
186 'ldflags': ['-msoft-float'], 186 'ldflags': ['-msoft-float'],
187 }], 187 }],
188 ],
189 'conditions': [
190 ['mips_arch_variant=="mips32r2"', { 188 ['mips_arch_variant=="mips32r2"', {
191 'cflags': ['-mips32r2', '-Wa,-mips32r2'], 189 'cflags': ['-mips32r2', '-Wa,-mips32r2'],
192 }], 190 }],
193 ['mips_arch_variant=="loongson"', { 191 ['mips_arch_variant=="loongson"', {
194 'cflags': ['-mips3', '-Wa,-mips3'], 192 'cflags': ['-mips3', '-Wa,-mips3'],
195 }, { 193 }, {
196 'cflags': ['-mips32', '-Wa,-mips32'], 194 'cflags': ['-mips32', '-Wa,-mips32'],
197 }], 195 }],
198 ], 196 ],
199 }], 197 }],
(...skipping 194 matching lines...) Expand 10 before | Expand all | Expand 10 after
394 # some test cases can cause stack overflow. 392 # some test cases can cause stack overflow.
395 # 'StackReserveSize': '297152', 393 # 'StackReserveSize': '297152',
396 }, 394 },
397 }, 395 },
398 }], # OS=="win" 396 }], # OS=="win"
399 ], # conditions 397 ], # conditions
400 }, # Release 398 }, # Release
401 }, # configurations 399 }, # configurations
402 }, # target_defaults 400 }, # target_defaults
403 } 401 }
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