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

Side by Side Diff: test/cctest/SConscript

Issue 269004: X64: Convert doubles to int32 inline (without calling runtime).
Patch Set: Created 11 years, 2 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
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 49 matching lines...) Expand 10 before | Expand all | Expand 10 after
60 'test-thread-termination.cc', 60 'test-thread-termination.cc',
61 'test-utils.cc', 61 'test-utils.cc',
62 'test-version.cc' 62 'test-version.cc'
63 ], 63 ],
64 'arch:arm': ['test-assembler-arm.cc', 'test-disasm-arm.cc'], 64 'arch:arm': ['test-assembler-arm.cc', 'test-disasm-arm.cc'],
65 'arch:ia32': [ 65 'arch:ia32': [
66 'test-assembler-ia32.cc', 66 'test-assembler-ia32.cc',
67 'test-disasm-ia32.cc', 67 'test-disasm-ia32.cc',
68 'test-log-stack-tracer.cc' 68 'test-log-stack-tracer.cc'
69 ], 69 ],
70 'arch:x64': ['test-assembler-x64.cc', 'test-log-stack-tracer.cc'], 70 'arch:x64': [
71 'test-assembler-x64.cc',
72 'test-macro-assembler-x64.cc',
73 'test-log-stack-tracer.cc'
74 ],
71 'os:linux': ['test-platform-linux.cc'], 75 'os:linux': ['test-platform-linux.cc'],
72 'os:macos': ['test-platform-macos.cc'], 76 'os:macos': ['test-platform-macos.cc'],
73 'os:nullos': ['test-platform-nullos.cc'], 77 'os:nullos': ['test-platform-nullos.cc'],
74 'os:win32': ['test-platform-win32.cc'] 78 'os:win32': ['test-platform-win32.cc']
75 } 79 }
76 80
77 81
78 def Build(): 82 def Build():
79 cctest_files = context.GetRelevantSources(SOURCES) 83 cctest_files = context.GetRelevantSources(SOURCES)
80 env = Environment() 84 env = Environment()
81 env.Replace(**context.flags['cctest']) 85 env.Replace(**context.flags['cctest'])
82 context.ApplyEnvOverrides(env) 86 context.ApplyEnvOverrides(env)
83 # There seems to be a glitch in the way scons decides where to put 87 # There seems to be a glitch in the way scons decides where to put
84 # PDB files when compiling using MSVC so we specify it manually. 88 # PDB files when compiling using MSVC so we specify it manually.
85 # This should not affect any other platforms. 89 # This should not affect any other platforms.
86 return env.Program('cctest', ['cctest.cc', cctest_files, object_files], 90 return env.Program('cctest', ['cctest.cc', cctest_files, object_files],
87 PDB='cctest.exe.pdb') 91 PDB='cctest.exe.pdb')
88 92
89 93
90 program = Build() 94 program = Build()
91 Return('program') 95 Return('program')
OLDNEW
« src/x64/macro-assembler-x64.cc ('K') | « src/x64/macro-assembler-x64.cc ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698