SConscript revision 12953
19793Sakash.bagdia@arm.com# Copyright 2018 Google, Inc.
210249Sstephan.diestelhorst@arm.com#
310000Sclt67@cornell.edu# Redistribution and use in source and binary forms, with or without
49793Sakash.bagdia@arm.com# modification, are permitted provided that the following conditions are
59793Sakash.bagdia@arm.com# met: redistributions of source code must retain the above copyright
69793Sakash.bagdia@arm.com# notice, this list of conditions and the following disclaimer;
79793Sakash.bagdia@arm.com# redistributions in binary form must reproduce the above copyright
89793Sakash.bagdia@arm.com# notice, this list of conditions and the following disclaimer in the
99793Sakash.bagdia@arm.com# documentation and/or other materials provided with the distribution;
109793Sakash.bagdia@arm.com# neither the name of the copyright holders nor the names of its
119793Sakash.bagdia@arm.com# contributors may be used to endorse or promote products derived from
129793Sakash.bagdia@arm.com# this software without specific prior written permission.
139793Sakash.bagdia@arm.com#
149793Sakash.bagdia@arm.com# THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
159793Sakash.bagdia@arm.com# "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
169793Sakash.bagdia@arm.com# LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
179793Sakash.bagdia@arm.com# A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
189793Sakash.bagdia@arm.com# OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
199793Sakash.bagdia@arm.com# SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
209793Sakash.bagdia@arm.com# LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
219793Sakash.bagdia@arm.com# DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
229793Sakash.bagdia@arm.com# THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
239793Sakash.bagdia@arm.com# (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
249793Sakash.bagdia@arm.com# OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
259793Sakash.bagdia@arm.com#
269793Sakash.bagdia@arm.com# Authors: Gabe Black
279793Sakash.bagdia@arm.com
289793Sakash.bagdia@arm.comImport('*')
299793Sakash.bagdia@arm.com
309793Sakash.bagdia@arm.comif env['USE_SYSTEMC']:
319793Sakash.bagdia@arm.com    SimObject('SystemC.py')
329793Sakash.bagdia@arm.com
339793Sakash.bagdia@arm.com    Source('kernel.cc')
349793Sakash.bagdia@arm.com    Source('module.cc')
359793Sakash.bagdia@arm.com    Source('object.cc')
369793Sakash.bagdia@arm.com    Source('process.cc')
379793Sakash.bagdia@arm.com    Source('process_types.cc')
389793Sakash.bagdia@arm.com    Source('scheduler.cc')
399793Sakash.bagdia@arm.com
4010000Sclt67@cornell.edu    Source('sc_attr.cc')
4110249Sstephan.diestelhorst@arm.com    Source('sc_event.cc')
429793Sakash.bagdia@arm.com    Source('sc_export.cc')
439793Sakash.bagdia@arm.com    Source('sc_interface.cc')
449793Sakash.bagdia@arm.com    Source('sc_join.cc')
459793Sakash.bagdia@arm.com    Source('sc_main.cc')
469793Sakash.bagdia@arm.com    Source('sc_module.cc')
479793Sakash.bagdia@arm.com    Source('sc_module_name.cc')
489793Sakash.bagdia@arm.com    Source('sc_object.cc')
499793Sakash.bagdia@arm.com    Source('sc_port.cc')
509793Sakash.bagdia@arm.com    Source('sc_process_handle.cc')
519793Sakash.bagdia@arm.com    Source('sc_prim.cc')
5210000Sclt67@cornell.edu    Source('sc_sensitive.cc')
5310000Sclt67@cornell.edu    Source('sc_simcontext.cc')
549793Sakash.bagdia@arm.com    Source('sc_spawn.cc')
559793Sakash.bagdia@arm.com    Source('sc_time.cc')
569793Sakash.bagdia@arm.com