summaryrefslogtreecommitdiff
path: root/src/gallium/drivers/trace/SConscript
diff options
context:
space:
mode:
authorJosé Fonseca <jrfonseca@tungstengraphics.com>2008-08-06 21:36:25 +0100
committerJosé Fonseca <jrfonseca@tungstengraphics.com>2008-08-07 18:58:29 +0100
commit35355f7610b69dcd2fdba451db4554478fe0acaa (patch)
tree3aeaf3fe1ac7271c60493e823b8b6c8a2e52d378 /src/gallium/drivers/trace/SConscript
parent1ee500ac73fa657f02321c46cf5d9a4bfdea54de (diff)
trace: New pipe driver to trace incoming calls.
Only pipe_screen calls traced, and only linux supported, for now.
Diffstat (limited to 'src/gallium/drivers/trace/SConscript')
-rw-r--r--src/gallium/drivers/trace/SConscript15
1 files changed, 15 insertions, 0 deletions
diff --git a/src/gallium/drivers/trace/SConscript b/src/gallium/drivers/trace/SConscript
new file mode 100644
index 00000000000..30225b5a54c
--- /dev/null
+++ b/src/gallium/drivers/trace/SConscript
@@ -0,0 +1,15 @@
+Import('*')
+
+env = env.Clone()
+
+trace = env.ConvenienceLibrary(
+ target = 'trace',
+ source = [
+ 'tr_context.c',
+ 'tr_dump.c',
+ 'tr_screen.c',
+ 'tr_state.c',
+ 'tr_stream.c',
+ ])
+
+Export('trace') \ No newline at end of file