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

Side by Side Diff: test/cctest/SConscript

Issue 866002: Fast double-to-ascii conversion. (Closed) Base URL: http://v8.googlecode.com/svn/branches/bleeding_edge/
Patch Set: '' Created 10 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 | « src/powers_ten.h ('k') | test/cctest/gay_shortest.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...) Expand all
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_shortest.cc',
37 'test-accessors.cc', 38 'test-accessors.cc',
38 'test-alloc.cc', 39 'test-alloc.cc',
39 'test-api.cc', 40 'test-api.cc',
40 'test-ast.cc', 41 'test-ast.cc',
41 'test-compiler.cc', 42 'test-compiler.cc',
42 'test-conversions.cc', 43 'test-conversions.cc',
43 'test-dataflow.cc', 44 'test-dataflow.cc',
44 'test-debug.cc', 45 'test-debug.cc',
45 'test-decls.cc', 46 'test-decls.cc',
47 'test-diy_fp.cc',
48 'test-double.cc',
46 'test-flags.cc', 49 'test-flags.cc',
47 'test-func-name-inference.cc', 50 'test-func-name-inference.cc',
51 'test-grisu3.cc',
48 'test-hashmap.cc', 52 'test-hashmap.cc',
49 'test-heap.cc', 53 'test-heap.cc',
50 'test-heap-profiler.cc', 54 'test-heap-profiler.cc',
51 'test-list.cc', 55 'test-list.cc',
52 'test-lock.cc', 56 'test-lock.cc',
53 'test-log.cc', 57 'test-log.cc',
54 'test-log-utils.cc', 58 'test-log-utils.cc',
55 'test-mark-compact.cc', 59 'test-mark-compact.cc',
56 'test-parsing.cc', 60 'test-parsing.cc',
57 'test-regexp.cc', 61 'test-regexp.cc',
(...skipping 33 matching lines...) Expand 10 before | Expand all | Expand 10 after
91 context.ApplyEnvOverrides(env) 95 context.ApplyEnvOverrides(env)
92 # There seems to be a glitch in the way scons decides where to put 96 # There seems to be a glitch in the way scons decides where to put
93 # PDB files when compiling using MSVC so we specify it manually. 97 # PDB files when compiling using MSVC so we specify it manually.
94 # This should not affect any other platforms. 98 # This should not affect any other platforms.
95 return env.Program('cctest', ['cctest.cc', cctest_files, object_files], 99 return env.Program('cctest', ['cctest.cc', cctest_files, object_files],
96 PDB='cctest.exe.pdb') 100 PDB='cctest.exe.pdb')
97 101
98 102
99 program = Build() 103 program = Build()
100 Return('program') 104 Return('program')
OLDNEW
« no previous file with comments | « src/powers_ten.h ('k') | test/cctest/gay_shortest.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698