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

Side by Side Diff: SConstruct

Issue 6685088: Merge isolates to bleeding_edge. (Closed) Base URL: http://v8.googlecode.com/svn/branches/bleeding_edge/
Patch Set: '' Created 9 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 | « AUTHORS ('k') | include/v8.h » ('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 2010 the V8 project authors. All rights reserved. 1 # Copyright 2010 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 560 matching lines...) Expand 10 before | Expand all | Expand 10 after
571 }, 571 },
572 }, 572 },
573 'pgo:instrument': { 573 'pgo:instrument': {
574 'LINKFLAGS': ['/LTCG:PGI'] 574 'LINKFLAGS': ['/LTCG:PGI']
575 }, 575 },
576 'pgo:optimize': { 576 'pgo:optimize': {
577 'LINKFLAGS': ['/LTCG:PGO'] 577 'LINKFLAGS': ['/LTCG:PGO']
578 } 578 }
579 }, 579 },
580 'arch:ia32': { 580 'arch:ia32': {
581 'CPPDEFINES': ['V8_TARGET_ARCH_IA32'], 581 'CPPDEFINES': ['V8_TARGET_ARCH_IA32', 'WIN32'],
582 'LINKFLAGS': ['/MACHINE:X86'] 582 'LINKFLAGS': ['/MACHINE:X86']
583 }, 583 },
584 'arch:x64': { 584 'arch:x64': {
585 'CPPDEFINES': ['V8_TARGET_ARCH_X64'], 585 'CPPDEFINES': ['V8_TARGET_ARCH_X64'],
586 'LINKFLAGS': ['/MACHINE:X64', '/STACK:2091752'] 586 'LINKFLAGS': ['/MACHINE:X64', '/STACK:2091752']
587 }, 587 },
588 'mode:debug': { 588 'mode:debug': {
589 'CCFLAGS': ['/Od'], 589 'CCFLAGS': ['/Od'],
590 'LINKFLAGS': ['/DEBUG'], 590 'LINKFLAGS': ['/DEBUG'],
591 'CPPDEFINES': ['DEBUG'], 591 'CPPDEFINES': ['DEBUG'],
(...skipping 592 matching lines...) Expand 10 before | Expand all | Expand 10 after
1184 # version of scons. Also, there's a bug in some revisions that 1184 # version of scons. Also, there's a bug in some revisions that
1185 # doesn't allow this flag to be set, so we swallow any exceptions. 1185 # doesn't allow this flag to be set, so we swallow any exceptions.
1186 # Lovely. 1186 # Lovely.
1187 try: 1187 try:
1188 SetOption('warn', 'no-deprecated') 1188 SetOption('warn', 'no-deprecated')
1189 except: 1189 except:
1190 pass 1190 pass
1191 1191
1192 1192
1193 Build() 1193 Build()
OLDNEW
« no previous file with comments | « AUTHORS ('k') | include/v8.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698