SConscript revision 13206
12568SN/A# Copyright 2018 Google, Inc.
29786Sandreas.hansson@arm.com#
38713Sandreas.hansson@arm.com# Redistribution and use in source and binary forms, with or without
48713Sandreas.hansson@arm.com# modification, are permitted provided that the following conditions are
58713Sandreas.hansson@arm.com# met: redistributions of source code must retain the above copyright
68713Sandreas.hansson@arm.com# notice, this list of conditions and the following disclaimer;
78713Sandreas.hansson@arm.com# redistributions in binary form must reproduce the above copyright
88713Sandreas.hansson@arm.com# notice, this list of conditions and the following disclaimer in the
98713Sandreas.hansson@arm.com# documentation and/or other materials provided with the distribution;
108713Sandreas.hansson@arm.com# neither the name of the copyright holders nor the names of its
118713Sandreas.hansson@arm.com# contributors may be used to endorse or promote products derived from
128713Sandreas.hansson@arm.com# this software without specific prior written permission.
138713Sandreas.hansson@arm.com#
142568SN/A# THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
152568SN/A# "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
162568SN/A# LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
172568SN/A# A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
182568SN/A# OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
192568SN/A# SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
202568SN/A# LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
212568SN/A# DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
222568SN/A# THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
232568SN/A# (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
242568SN/A# OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
252568SN/A#
262568SN/A# Authors: Gabe Black
272568SN/A
282568SN/AImport('*')
292568SN/A
302568SN/Aif env['USE_SYSTEMC']:
312568SN/A    SimObject('SystemC.py')
322568SN/A
332568SN/A    Source('channel.cc')
342568SN/A    Source('event.cc')
352568SN/A    Source('kernel.cc')
362568SN/A    Source('module.cc')
372568SN/A    Source('object.cc')
382568SN/A    Source('process.cc')
392665Ssaidi@eecs.umich.edu    Source('process_types.cc')
402665Ssaidi@eecs.umich.edu    Source('python.cc')
412665Ssaidi@eecs.umich.edu    Source('scheduler.cc')
428713Sandreas.hansson@arm.com    Source('sched_event.cc')
432568SN/A    Source('sensitivity.cc')
442568SN/A
452568SN/A    Source('sc_attr.cc')
462982Sstever@eecs.umich.edu    Source('sc_event.cc')
478713Sandreas.hansson@arm.com    Source('sc_export.cc')
488713Sandreas.hansson@arm.com    Source('sc_interface.cc')
492568SN/A    Source('sc_join.cc')
502568SN/A    Source('sc_main.cc')
512568SN/A    Source('sc_module.cc')
522568SN/A    Source('sc_module_name.cc')
532568SN/A    Source('sc_object.cc')
549786Sandreas.hansson@arm.com    Source('sc_port.cc')
552568SN/A    Source('sc_process_handle.cc')
566215Snate@binkert.org    Source('sc_prim.cc')
572568SN/A    Source('sc_sensitive.cc')
584762Snate@binkert.org    Source('sc_simcontext.cc')
592568SN/A    Source('sc_spawn.cc')
608713Sandreas.hansson@arm.com    Source('sc_time.cc')
618713Sandreas.hansson@arm.com