blob: f66f72b0eb2510f2f2cd7ccf0c92687db9af84c3 [file] [log] [blame]
ager@chromium.org9258b6b2008-09-11 09:11:10 +00001# Copyright 2008 the V8 project authors. All rights reserved.
mads.s.ager@gmail.com9a4089a2008-09-01 08:55:01 +00002# Redistribution and use in source and binary forms, with or without
3# modification, are permitted provided that the following conditions are
4# met:
5#
6# * Redistributions of source code must retain the above copyright
7# notice, this list of conditions and the following disclaimer.
8# * Redistributions in binary form must reproduce the above
9# copyright notice, this list of conditions and the following
10# disclaimer in the documentation and/or other materials provided
11# with the distribution.
12# * Neither the name of Google Inc. nor the names of its
13# contributors may be used to endorse or promote products derived
14# from this software without specific prior written permission.
15#
16# THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
17# "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
18# LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
19# A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
20# OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
21# SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
22# LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
23# DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
24# THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
25# (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
26# OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
27
28import sys
29from os.path import join, dirname, abspath
30root_dir = dirname(File('SConstruct').rfile().abspath)
31sys.path.append(join(root_dir, 'tools'))
32Import('context object_files')
33
34
35SOURCES = {
36 'all': [
kasperl@chromium.org7be3c992009-03-12 07:19:55 +000037 'test-alloc.cc',
38 'test-api.cc',
39 'test-ast.cc',
40 'test-compiler.cc',
41 'test-conversions.cc',
42 'test-debug.cc',
43 'test-decls.cc',
44 'test-flags.cc',
kasperl@chromium.orgd1e3e722009-04-14 13:38:25 +000045 'test-func-name-inference.cc',
kasperl@chromium.org7be3c992009-03-12 07:19:55 +000046 'test-hashmap.cc',
47 'test-heap.cc',
48 'test-list.cc',
49 'test-lock.cc',
50 'test-mark-compact.cc',
51 'test-regexp.cc',
52 'test-serialize.cc',
53 'test-sockets.cc',
54 'test-spaces.cc',
55 'test-strings.cc',
56 'test-threads.cc',
57 'test-utils.cc'
mads.s.ager@gmail.com9a4089a2008-09-01 08:55:01 +000058 ],
59 'arch:arm': ['test-assembler-arm.cc', 'test-disasm-arm.cc'],
kasperl@chromium.org7be3c992009-03-12 07:19:55 +000060 'arch:ia32': [
61 'test-assembler-ia32.cc',
62 'test-disasm-ia32.cc',
63 'test-log-ia32.cc'
64 ],
mads.s.ager@gmail.com9a4089a2008-09-01 08:55:01 +000065 'os:linux': ['test-platform-linux.cc'],
66 'os:macos': ['test-platform-macos.cc'],
67 'os:nullos': ['test-platform-nullos.cc'],
68 'os:win32': ['test-platform-win32.cc']
69}
70
71
72def Build():
73 cctest_files = context.GetRelevantSources(SOURCES)
74 env = Environment()
75 env.Replace(**context.flags['cctest'])
ager@chromium.org9258b6b2008-09-11 09:11:10 +000076 context.ApplyEnvOverrides(env)
mads.s.ager@gmail.com9a4089a2008-09-01 08:55:01 +000077 # There seems to be a glitch in the way scons decides where to put
78 # PDB files when compiling using MSVC so we specify it manually.
79 # This should not affect any other platforms.
80 return env.Program('cctest', ['cctest.cc', cctest_files, object_files],
81 PDB='cctest.exe.pdb')
82
83
84program = Build()
85Return('program')