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

Side by Side Diff: build/common.gypi

Issue 7830004: move -m32 flag for ia32 targets from standalone.gypi to common.gypi (Closed) Base URL: https://v8.googlecode.com/svn/branches/bleeding_edge
Patch Set: Created 9 years, 3 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 | build/standalone.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 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 155 matching lines...) Expand 10 before | Expand all | Expand 10 after
166 'COMPRESS_STARTUP_DATA_BZ2', 166 'COMPRESS_STARTUP_DATA_BZ2',
167 ], 167 ],
168 }], 168 }],
169 ['OS=="win" and v8_enable_prof==1', { 169 ['OS=="win" and v8_enable_prof==1', {
170 'msvs_settings': { 170 'msvs_settings': {
171 'VCLinkerTool': { 171 'VCLinkerTool': {
172 'GenerateMapFile': 'true', 172 'GenerateMapFile': 'true',
173 }, 173 },
174 }, 174 },
175 }], 175 }],
176 ['OS=="linux" or OS=="freebsd" or OS=="openbsd" or OS=="solaris"', {
177 'conditions': [
178 [ 'target_arch=="ia32"', {
179 'cflags': [ '-m32' ],
180 'ldflags': [ '-m32' ],
181 }],
182 ],
183 }],
176 ], 184 ],
177 'configurations': { 185 'configurations': {
178 'Debug': { 186 'Debug': {
179 'defines': [ 187 'defines': [
180 'DEBUG', 188 'DEBUG',
181 'ENABLE_DISASSEMBLER', 189 'ENABLE_DISASSEMBLER',
182 'V8_ENABLE_CHECKS', 190 'V8_ENABLE_CHECKS',
183 'OBJECT_PRINT', 191 'OBJECT_PRINT',
184 ], 192 ],
185 'msvs_settings': { 193 'msvs_settings': {
(...skipping 95 matching lines...) Expand 10 before | Expand all | Expand 10 after
281 # some test cases can cause stack overflow. 289 # some test cases can cause stack overflow.
282 # 'StackReserveSize': '297152', 290 # 'StackReserveSize': '297152',
283 }, 291 },
284 }, 292 },
285 }], 293 }],
286 ], 294 ],
287 }, 295 },
288 }, 296 },
289 }, 297 },
290 } 298 }
OLDNEW
« no previous file with comments | « no previous file | build/standalone.gypi » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698