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

Side by Side Diff: test/cctest/SConscript

Issue 6709022: Re-establish mips basic infrastructure. (Closed) Base URL: git://github.com/v8/v8.git@master
Patch Set: Rebased on bleeding_edge r7374 Created 9 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 | « src/v8globals.h ('k') | test/cctest/cctest.status » ('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 2008 the V8 project authors. All rights reserved. 1 # Copyright 2008 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 77 matching lines...) Expand 10 before | Expand all | Expand 10 after
88 'test-disasm-arm.cc' 88 'test-disasm-arm.cc'
89 ], 89 ],
90 'arch:ia32': [ 90 'arch:ia32': [
91 'test-assembler-ia32.cc', 91 'test-assembler-ia32.cc',
92 'test-disasm-ia32.cc', 92 'test-disasm-ia32.cc',
93 'test-log-stack-tracer.cc' 93 'test-log-stack-tracer.cc'
94 ], 94 ],
95 'arch:x64': ['test-assembler-x64.cc', 95 'arch:x64': ['test-assembler-x64.cc',
96 'test-macro-assembler-x64.cc', 96 'test-macro-assembler-x64.cc',
97 'test-log-stack-tracer.cc'], 97 'test-log-stack-tracer.cc'],
98 'arch:mips': ['test-assembler-mips.cc', 'test-mips.cc'], 98 'arch:mips': ['test-assembler-mips.cc'],
99 'os:linux': ['test-platform-linux.cc'], 99 'os:linux': ['test-platform-linux.cc'],
100 'os:macos': ['test-platform-macos.cc'], 100 'os:macos': ['test-platform-macos.cc'],
101 'os:nullos': ['test-platform-nullos.cc'], 101 'os:nullos': ['test-platform-nullos.cc'],
102 'os:win32': ['test-platform-win32.cc'] 102 'os:win32': ['test-platform-win32.cc']
103 } 103 }
104 104
105 105
106 def Build(): 106 def Build():
107 cctest_files = context.GetRelevantSources(SOURCES) 107 cctest_files = context.GetRelevantSources(SOURCES)
108 env = Environment() 108 env = Environment()
109 env.Replace(**context.flags['cctest']) 109 env.Replace(**context.flags['cctest'])
110 context.ApplyEnvOverrides(env) 110 context.ApplyEnvOverrides(env)
111 # There seems to be a glitch in the way scons decides where to put 111 # There seems to be a glitch in the way scons decides where to put
112 # PDB files when compiling using MSVC so we specify it manually. 112 # PDB files when compiling using MSVC so we specify it manually.
113 # This should not affect any other platforms. 113 # This should not affect any other platforms.
114 return env.Program('cctest', ['cctest.cc', cctest_files, object_files], 114 return env.Program('cctest', ['cctest.cc', cctest_files, object_files],
115 PDB='cctest.exe.pdb') 115 PDB='cctest.exe.pdb')
116 116
117 117
118 program = Build() 118 program = Build()
119 Return('program') 119 Return('program')
OLDNEW
« no previous file with comments | « src/v8globals.h ('k') | test/cctest/cctest.status » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698