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

Side by Side Diff: build/common.gypi

Issue 9808065: Add support for Mac OS X 64bit builds with GYP (Closed) Base URL: git://github.com/v8/v8.git@bleeding_edge
Patch Set: Rebased against latest bleeding_edge branch and re-tested Created 8 years, 8 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 | « Makefile ('k') | build/gyp_v8 » ('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 261 matching lines...) Expand 10 before | Expand all | Expand 10 after
272 'ldflags': [ '-m32' ], 272 'ldflags': [ '-m32' ],
273 }], 273 }],
274 [ 'v8_no_strict_aliasing==1', { 274 [ 'v8_no_strict_aliasing==1', {
275 'cflags': [ '-fno-strict-aliasing' ], 275 'cflags': [ '-fno-strict-aliasing' ],
276 }], 276 }],
277 ], # conditions 277 ], # conditions
278 }], 278 }],
279 ['OS=="solaris"', { 279 ['OS=="solaris"', {
280 'defines': [ '__C99FEATURES__=1' ], # isinf() etc. 280 'defines': [ '__C99FEATURES__=1' ], # isinf() etc.
281 }], 281 }],
282 ['OS=="mac" and target_arch=="ia32"', {
283 'xcode_settings': {
284 'ARCHS': ['i386']
285 }
286 }],
287 ['OS=="mac" and target_arch=="x64"', {
288 'xcode_settings': {
289 'ARCHS': ['x86_64']
290 }
291 }],
282 ], # conditions 292 ], # conditions
283 'configurations': { 293 'configurations': {
284 'Debug': { 294 'Debug': {
285 'defines': [ 295 'defines': [
286 'DEBUG', 296 'DEBUG',
287 'ENABLE_DISASSEMBLER', 297 'ENABLE_DISASSEMBLER',
288 'V8_ENABLE_CHECKS', 298 'V8_ENABLE_CHECKS',
289 'OBJECT_PRINT', 299 'OBJECT_PRINT',
290 ], 300 ],
291 'msvs_settings': { 301 'msvs_settings': {
(...skipping 102 matching lines...) Expand 10 before | Expand all | Expand 10 after
394 # some test cases can cause stack overflow. 404 # some test cases can cause stack overflow.
395 # 'StackReserveSize': '297152', 405 # 'StackReserveSize': '297152',
396 }, 406 },
397 }, 407 },
398 }], # OS=="win" 408 }], # OS=="win"
399 ], # conditions 409 ], # conditions
400 }, # Release 410 }, # Release
401 }, # configurations 411 }, # configurations
402 }, # target_defaults 412 }, # target_defaults
403 } 413 }
OLDNEW
« no previous file with comments | « Makefile ('k') | build/gyp_v8 » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698