SConscript revision 12837:413a7b490b1b
110515SAli.Saidi@ARM.com# Copyright 2018 Google, Inc.
210515SAli.Saidi@ARM.com#
310515SAli.Saidi@ARM.com# Redistribution and use in source and binary forms, with or without
410515SAli.Saidi@ARM.com# modification, are permitted provided that the following conditions are
510515SAli.Saidi@ARM.com# met: redistributions of source code must retain the above copyright
610515SAli.Saidi@ARM.com# notice, this list of conditions and the following disclaimer;
710515SAli.Saidi@ARM.com# redistributions in binary form must reproduce the above copyright
810515SAli.Saidi@ARM.com# notice, this list of conditions and the following disclaimer in the
910515SAli.Saidi@ARM.com# documentation and/or other materials provided with the distribution;
1010515SAli.Saidi@ARM.com# neither the name of the copyright holders nor the names of its
1110515SAli.Saidi@ARM.com# contributors may be used to endorse or promote products derived from
1210515SAli.Saidi@ARM.com# this software without specific prior written permission.
1310515SAli.Saidi@ARM.com#
1410515SAli.Saidi@ARM.com# THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
1511570SCurtis.Dunham@arm.com# "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
1610515SAli.Saidi@ARM.com# LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
1710515SAli.Saidi@ARM.com# A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
1810515SAli.Saidi@ARM.com# OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
1911570SCurtis.Dunham@arm.com# SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
2011570SCurtis.Dunham@arm.com# LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
2110515SAli.Saidi@ARM.com# DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
2210515SAli.Saidi@ARM.com# THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
2310515SAli.Saidi@ARM.com# (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
2411374Ssteve.reinhardt@amd.com# OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
2510515SAli.Saidi@ARM.com#
2610515SAli.Saidi@ARM.com# Authors: Gabe Black
2710515SAli.Saidi@ARM.com
2811570SCurtis.Dunham@arm.comImport('*')
2910515SAli.Saidi@ARM.com
3010515SAli.Saidi@ARM.comif env['USE_SYSTEMC']:
3110515SAli.Saidi@ARM.com    SimObject('SystemC.py')
3210515SAli.Saidi@ARM.com
3311570SCurtis.Dunham@arm.com    Source('kernel.cc')
3410515SAli.Saidi@ARM.com
3510515SAli.Saidi@ARM.com    Source('sc_attr.cc')
3610515SAli.Saidi@ARM.com    Source('sc_event.cc')
3710515SAli.Saidi@ARM.com    Source('sc_export.cc')
3810515SAli.Saidi@ARM.com    Source('sc_interface.cc')
3910515SAli.Saidi@ARM.com    Source('sc_main.cc')
4010753Sstever@gmail.com    Source('sc_module.cc')
4110753Sstever@gmail.com    Source('sc_module_name.cc')
4210515SAli.Saidi@ARM.com    Source('sc_object.cc')
4311167Sjthestness@gmail.com    Source('sc_port.cc')
4410515SAli.Saidi@ARM.com    Source('sc_prim.cc')
4511570SCurtis.Dunham@arm.com    Source('sc_sensitive.cc')
4611570SCurtis.Dunham@arm.com    Source('sc_time.cc')
4711570SCurtis.Dunham@arm.com