blob: c2a96f2729921d4564baa3bbb2dcdeb022cfdd46 [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': [
37 'test-hashmap.cc', 'test-debug.cc', 'test-api.cc', 'test-flags.cc',
38 'test-ast.cc', 'test-heap.cc', 'test-utils.cc', 'test-compiler.cc',
39 'test-spaces.cc', 'test-mark-compact.cc', 'test-lock.cc',
40 'test-conversions.cc', 'test-strings.cc', 'test-serialize.cc',
ager@chromium.orga74f0da2008-12-03 16:05:52 +000041 'test-decls.cc', 'test-alloc.cc', 'test-regexp.cc'
mads.s.ager@gmail.com9a4089a2008-09-01 08:55:01 +000042 ],
43 'arch:arm': ['test-assembler-arm.cc', 'test-disasm-arm.cc'],
44 'arch:ia32': ['test-assembler-ia32.cc', 'test-disasm-ia32.cc'],
45 'os:linux': ['test-platform-linux.cc'],
46 'os:macos': ['test-platform-macos.cc'],
47 'os:nullos': ['test-platform-nullos.cc'],
48 'os:win32': ['test-platform-win32.cc']
49}
50
51
52def Build():
53 cctest_files = context.GetRelevantSources(SOURCES)
54 env = Environment()
55 env.Replace(**context.flags['cctest'])
ager@chromium.org9258b6b2008-09-11 09:11:10 +000056 context.ApplyEnvOverrides(env)
mads.s.ager@gmail.com9a4089a2008-09-01 08:55:01 +000057 # There seems to be a glitch in the way scons decides where to put
58 # PDB files when compiling using MSVC so we specify it manually.
59 # This should not affect any other platforms.
60 return env.Program('cctest', ['cctest.cc', cctest_files, object_files],
61 PDB='cctest.exe.pdb')
62
63
64program = Build()
65Return('program')