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

Side by Side Diff: build/common.gypi

Issue 11275184: First draft of the sh4 port Base URL: http://github.com/v8/v8.git@master
Patch Set: Use GYP and fixe some typos Created 8 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
« no previous file with comments | « Makefile ('k') | src/assembler.cc » ('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 234 matching lines...) Expand 10 before | Expand all | Expand 10 after
245 'xcode_settings': { 245 'xcode_settings': {
246 'ARCHS': [ 'x86_64' ], 246 'ARCHS': [ 'x86_64' ],
247 }, 247 },
248 'msvs_settings': { 248 'msvs_settings': {
249 'VCLinkerTool': { 249 'VCLinkerTool': {
250 'StackReserveSize': '2097152', 250 'StackReserveSize': '2097152',
251 }, 251 },
252 }, 252 },
253 'msvs_configuration_platform': 'x64', 253 'msvs_configuration_platform': 'x64',
254 }], # v8_target_arch=="x64" 254 }], # v8_target_arch=="x64"
255 ['v8_target_arch=="sh4"', {
256 'defines': [
257 'V8_TARGET_ARCH_SH4',
258 ],
259 'cflags': ['-mieee', '-fno-strict-aliasing'],
260 }], # v8_target_arch=="sh4"
255 ['v8_use_liveobjectlist=="true"', { 261 ['v8_use_liveobjectlist=="true"', {
256 'defines': [ 262 'defines': [
257 'ENABLE_DEBUGGER_SUPPORT', 263 'ENABLE_DEBUGGER_SUPPORT',
258 'INSPECTOR', 264 'INSPECTOR',
259 'OBJECT_PRINT', 265 'OBJECT_PRINT',
260 'LIVEOBJECTLIST', 266 'LIVEOBJECTLIST',
261 ], 267 ],
262 }], 268 }],
263 ['v8_compress_startup_data=="bz2"', { 269 ['v8_compress_startup_data=="bz2"', {
264 'defines': [ 270 'defines': [
(...skipping 173 matching lines...) Expand 10 before | Expand all | Expand 10 after
438 'OptimizeReferences': '2', 444 'OptimizeReferences': '2',
439 'EnableCOMDATFolding': '2', 445 'EnableCOMDATFolding': '2',
440 }, 446 },
441 }, 447 },
442 }], # OS=="win" 448 }], # OS=="win"
443 ], # conditions 449 ], # conditions
444 }, # Release 450 }, # Release
445 }, # configurations 451 }, # configurations
446 }, # target_defaults 452 }, # target_defaults
447 } 453 }
OLDNEW
« no previous file with comments | « Makefile ('k') | src/assembler.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698