summaryrefslogtreecommitdiff
path: root/src/cpu/testers/traffic_gen/SConscript
diff options
context:
space:
mode:
Diffstat (limited to 'src/cpu/testers/traffic_gen/SConscript')
-rw-r--r--src/cpu/testers/traffic_gen/SConscript24
1 files changed, 14 insertions, 10 deletions
diff --git a/src/cpu/testers/traffic_gen/SConscript b/src/cpu/testers/traffic_gen/SConscript
index 74d027970..f851b7925 100644
--- a/src/cpu/testers/traffic_gen/SConscript
+++ b/src/cpu/testers/traffic_gen/SConscript
@@ -1,6 +1,6 @@
# -*- mode:python -*-
-# Copyright (c) 2012, 2017 ARM Limited
+# Copyright (c) 2012, 2017-2018 ARM Limited
# All rights reserved.
#
# The license below extends only to copyright in the software and shall
@@ -39,19 +39,23 @@
Import('*')
+
+Source('base.cc')
+Source('base_gen.cc')
+Source('dram_gen.cc')
+Source('dram_rot_gen.cc')
+Source('exit_gen.cc')
+Source('idle_gen.cc')
+Source('linear_gen.cc')
+Source('random_gen.cc')
+
+DebugFlag('TrafficGen')
+SimObject('BaseTrafficGen.py')
+
# Only build the traffic generator if we have support for protobuf as the
# tracing relies on it
if env['HAVE_PROTOBUF']:
SimObject('TrafficGen.py')
-
- Source('base_gen.cc')
- Source('dram_gen.cc')
- Source('dram_rot_gen.cc')
- Source('exit_gen.cc')
- Source('idle_gen.cc')
- Source('linear_gen.cc')
- Source('random_gen.cc')
Source('trace_gen.cc')
Source('traffic_gen.cc')
- DebugFlag('TrafficGen')