Chromium Code Reviews

Side by Side Diff: test/cctest/SConscript

Issue 1865001: Provide (non Gay) dtoa for fixed notation. (Closed) Base URL: http://v8.googlecode.com/svn/branches/bleeding_edge/
Patch Set: '' Created 10 years, 7 months ago
Use n/p to move between diff chunks; N/P to move between comments.
Jump to:
View unified diff | | Annotate | Revision Log
« no previous file with comments | « src/fixed-dtoa.cc ('k') | test/cctest/gay-fixed.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 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 16 matching lines...)
27 27
28 import sys 28 import sys
29 from os.path import join, dirname, abspath 29 from os.path import join, dirname, abspath
30 root_dir = dirname(File('SConstruct').rfile().abspath) 30 root_dir = dirname(File('SConstruct').rfile().abspath)
31 sys.path.append(join(root_dir, 'tools')) 31 sys.path.append(join(root_dir, 'tools'))
32 Import('context object_files') 32 Import('context object_files')
33 33
34 34
35 SOURCES = { 35 SOURCES = {
36 'all': [ 36 'all': [
37 'gay-fixed.cc',
37 'gay-shortest.cc', 38 'gay-shortest.cc',
38 'test-accessors.cc', 39 'test-accessors.cc',
39 'test-alloc.cc', 40 'test-alloc.cc',
40 'test-api.cc', 41 'test-api.cc',
41 'test-ast.cc', 42 'test-ast.cc',
42 'test-circular-queue.cc', 43 'test-circular-queue.cc',
43 'test-compiler.cc', 44 'test-compiler.cc',
44 'test-conversions.cc', 45 'test-conversions.cc',
45 'test-cpu-profiler.cc', 46 'test-cpu-profiler.cc',
46 'test-dataflow.cc', 47 'test-dataflow.cc',
47 'test-debug.cc', 48 'test-debug.cc',
48 'test-decls.cc', 49 'test-decls.cc',
49 'test-diy-fp.cc', 50 'test-diy-fp.cc',
50 'test-double.cc', 51 'test-double.cc',
51 'test-fast-dtoa.cc', 52 'test-fast-dtoa.cc',
53 'test-fixed-dtoa.cc',
52 'test-flags.cc', 54 'test-flags.cc',
53 'test-func-name-inference.cc', 55 'test-func-name-inference.cc',
54 'test-hashmap.cc', 56 'test-hashmap.cc',
55 'test-heap.cc', 57 'test-heap.cc',
56 'test-heap-profiler.cc', 58 'test-heap-profiler.cc',
57 'test-list.cc', 59 'test-list.cc',
58 'test-liveedit.cc', 60 'test-liveedit.cc',
59 'test-lock.cc', 61 'test-lock.cc',
60 'test-log.cc', 62 'test-log.cc',
61 'test-log-utils.cc', 63 'test-log-utils.cc',
(...skipping 37 matching lines...)
99 context.ApplyEnvOverrides(env) 101 context.ApplyEnvOverrides(env)
100 # There seems to be a glitch in the way scons decides where to put 102 # There seems to be a glitch in the way scons decides where to put
101 # PDB files when compiling using MSVC so we specify it manually. 103 # PDB files when compiling using MSVC so we specify it manually.
102 # This should not affect any other platforms. 104 # This should not affect any other platforms.
103 return env.Program('cctest', ['cctest.cc', cctest_files, object_files], 105 return env.Program('cctest', ['cctest.cc', cctest_files, object_files],
104 PDB='cctest.exe.pdb') 106 PDB='cctest.exe.pdb')
105 107
106 108
107 program = Build() 109 program = Build()
108 Return('program') 110 Return('program')
OLDNEW
« no previous file with comments | « src/fixed-dtoa.cc ('k') | test/cctest/gay-fixed.h » ('j') | no next file with comments »

Powered by Google App Engine