SConscript revision 13403
11046SN/A# Copyright 2018 Google, Inc.
21046SN/A#
31762SN/A# Redistribution and use in source and binary forms, with or without
41046SN/A# modification, are permitted provided that the following conditions are
51046SN/A# met: redistributions of source code must retain the above copyright
61046SN/A# notice, this list of conditions and the following disclaimer;
71046SN/A# redistributions in binary form must reproduce the above copyright
81046SN/A# notice, this list of conditions and the following disclaimer in the
91046SN/A# documentation and/or other materials provided with the distribution;
101046SN/A# neither the name of the copyright holders nor the names of its
111046SN/A# contributors may be used to endorse or promote products derived from
121046SN/A# this software without specific prior written permission.
131046SN/A#
141046SN/A# THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
151046SN/A# "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
161046SN/A# LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
171046SN/A# A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
181046SN/A# OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
191046SN/A# SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
201046SN/A# LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
211046SN/A# DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
221046SN/A# THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
231046SN/A# (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
241046SN/A# OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
251046SN/A#
261046SN/A# Authors: Gabe Black
271046SN/A
282665Ssaidi@eecs.umich.eduImport('*')
292665Ssaidi@eecs.umich.edu
302665Ssaidi@eecs.umich.eduif env['USE_SYSTEMC']:
311046SN/A    SimObject('SystemC.py')
324202Sbinkertn@umich.edu
331530SN/A    Source('channel.cc')
3410453SAndrew.Bardsley@arm.com    Source('event.cc')
3510453SAndrew.Bardsley@arm.com    Source('kernel.cc')
363645Sbinkertn@umich.edu    Source('messages.cc')
375522Snate@binkert.org    Source('module.cc')
384382Sbinkertn@umich.edu    Source('object.cc')
394382Sbinkertn@umich.edu    Source('port.cc')
405471Snate@binkert.org    Source('process.cc')
415801Snate@binkert.org    Source('python.cc')
425801Snate@binkert.org    Source('scheduler.cc')
434382Sbinkertn@umich.edu    Source('sched_event.cc')
444382Sbinkertn@umich.edu    Source('sensitivity.cc')
455470Snate@binkert.org    Source('time.cc')
464382Sbinkertn@umich.edu
474382Sbinkertn@umich.edu    Source('sc_attr.cc')
484762Snate@binkert.org    Source('sc_event.cc')
494382Sbinkertn@umich.edu    Source('sc_export.cc')
505799Snate@binkert.org    Source('sc_interface.cc')
517674Snate@binkert.org    Source('sc_join.cc')
528295Snate@binkert.org    Source('sc_main.cc')
535467Snate@binkert.org    Source('sc_main_fiber.cc')
545467Snate@binkert.org    Source('sc_module.cc')
556502Snate@binkert.org    Source('sc_module_name.cc')
566654Snate@binkert.org    Source('sc_object.cc')
578999Suri.wiener@arm.com    Source('sc_port.cc')
586501Snate@binkert.org    Source('sc_process_handle.cc')
595467Snate@binkert.org    Source('sc_prim.cc')
605467Snate@binkert.org    Source('sc_sensitive.cc')
616500Snate@binkert.org    Source('sc_simcontext.cc')
628224Snate@binkert.org    Source('sc_spawn.cc')
636654Snate@binkert.org    Source('sc_time.cc')
647503Snate@binkert.org