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

Side by Side Diff: test/cctest/SConscript

Issue 4060001: Bignum implementation of Strtod. (Closed) Base URL: https://v8.googlecode.com/svn/branches/bleeding_edge
Patch Set: bignum.h changes that somehow disappeared earlier. Created 10 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 | Annotate | Revision Log
« no previous file with comments | « src/strtod.cc ('k') | test/cctest/test-bignum.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 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 23 matching lines...) Expand all
34 34
35 SOURCES = { 35 SOURCES = {
36 'all': [ 36 'all': [
37 'gay-fixed.cc', 37 'gay-fixed.cc',
38 'gay-precision.cc', 38 'gay-precision.cc',
39 'gay-shortest.cc', 39 'gay-shortest.cc',
40 'test-accessors.cc', 40 'test-accessors.cc',
41 'test-alloc.cc', 41 'test-alloc.cc',
42 'test-api.cc', 42 'test-api.cc',
43 'test-ast.cc', 43 'test-ast.cc',
44 'test-bignum.cc',
44 'test-circular-queue.cc', 45 'test-circular-queue.cc',
45 'test-compiler.cc', 46 'test-compiler.cc',
46 'test-conversions.cc', 47 'test-conversions.cc',
47 'test-cpu-profiler.cc', 48 'test-cpu-profiler.cc',
48 'test-dataflow.cc', 49 'test-dataflow.cc',
49 'test-debug.cc', 50 'test-debug.cc',
50 'test-decls.cc', 51 'test-decls.cc',
51 'test-diy-fp.cc', 52 'test-diy-fp.cc',
52 'test-double.cc', 53 'test-double.cc',
53 'test-fast-dtoa.cc', 54 'test-fast-dtoa.cc',
(...skipping 51 matching lines...) Expand 10 before | Expand all | Expand 10 after
105 context.ApplyEnvOverrides(env) 106 context.ApplyEnvOverrides(env)
106 # There seems to be a glitch in the way scons decides where to put 107 # There seems to be a glitch in the way scons decides where to put
107 # PDB files when compiling using MSVC so we specify it manually. 108 # PDB files when compiling using MSVC so we specify it manually.
108 # This should not affect any other platforms. 109 # This should not affect any other platforms.
109 return env.Program('cctest', ['cctest.cc', cctest_files, object_files], 110 return env.Program('cctest', ['cctest.cc', cctest_files, object_files],
110 PDB='cctest.exe.pdb') 111 PDB='cctest.exe.pdb')
111 112
112 113
113 program = Build() 114 program = Build()
114 Return('program') 115 Return('program')
OLDNEW
« no previous file with comments | « src/strtod.cc ('k') | test/cctest/test-bignum.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698