mesa/src/gallium/drivers/trace/SConscript
José Fonseca 35355f7610 trace: New pipe driver to trace incoming calls.
Only pipe_screen calls traced, and only linux supported, for now.
2008-08-07 18:58:29 +01:00

15 lines
No EOL
216 B
Python

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')