SConscript revision 13277
110023Smatt.horsnell@ARM.com# Copyright 2018 Google, Inc. 210023Smatt.horsnell@ARM.com# 310023Smatt.horsnell@ARM.com# Redistribution and use in source and binary forms, with or without 410023Smatt.horsnell@ARM.com# modification, are permitted provided that the following conditions are 510023Smatt.horsnell@ARM.com# met: redistributions of source code must retain the above copyright 610023Smatt.horsnell@ARM.com# notice, this list of conditions and the following disclaimer; 710023Smatt.horsnell@ARM.com# redistributions in binary form must reproduce the above copyright 810023Smatt.horsnell@ARM.com# notice, this list of conditions and the following disclaimer in the 910023Smatt.horsnell@ARM.com# documentation and/or other materials provided with the distribution; 1010023Smatt.horsnell@ARM.com# neither the name of the copyright holders nor the names of its 1110023Smatt.horsnell@ARM.com# contributors may be used to endorse or promote products derived from 1210023Smatt.horsnell@ARM.com# this software without specific prior written permission. 1310023Smatt.horsnell@ARM.com# 1410023Smatt.horsnell@ARM.com# THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS 1510023Smatt.horsnell@ARM.com# "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT 1610023Smatt.horsnell@ARM.com# LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR 1710023Smatt.horsnell@ARM.com# A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT 1810023Smatt.horsnell@ARM.com# OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, 1910023Smatt.horsnell@ARM.com# SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT 2010023Smatt.horsnell@ARM.com# LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, 2110023Smatt.horsnell@ARM.com# DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY 2210023Smatt.horsnell@ARM.com# THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT 2310023Smatt.horsnell@ARM.com# (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE 2410023Smatt.horsnell@ARM.com# OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. 2510023Smatt.horsnell@ARM.com# 2610023Smatt.horsnell@ARM.com# Authors: Gabe Black 2710023Smatt.horsnell@ARM.com 2810023Smatt.horsnell@ARM.comImport('*') 2910023Smatt.horsnell@ARM.com 3010023Smatt.horsnell@ARM.comif env['USE_SYSTEMC']: 3110023Smatt.horsnell@ARM.com Source('sc_clock.cc') 3210023Smatt.horsnell@ARM.com Source('sc_event_queue.cc') 3310023Smatt.horsnell@ARM.com Source('sc_in_resolved.cc') 3410023Smatt.horsnell@ARM.com Source('sc_inout_resolved.cc') 3510023Smatt.horsnell@ARM.com Source('sc_out_resolved.cc') 3610023Smatt.horsnell@ARM.com Source('sc_mutex.cc') 3710023Smatt.horsnell@ARM.com Source('sc_semaphore.cc') 3813665Sandreas.sandberg@arm.com Source('sc_signal.cc') 3910023Smatt.horsnell@ARM.com Source('sc_signal_resolved.cc') 4010023Smatt.horsnell@ARM.com