summaryrefslogtreecommitdiff
path: root/src/gallium/drivers/trace/SConscript
blob: 5c49468c4ebc1c8196892483aeae4f57b9a5f4db (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
Import('*')

env = env.Clone()

trace = env.ConvenienceLibrary(
    target = 'trace',
    source = [
        'tr_context.c',
        'tr_dump.c',
        'tr_screen.c',
        'tr_state.c',
        'tr_stream_stdc.c',
        'tr_stream_wd.c',
        'tr_texture.c',
        'tr_winsys.c',
    ])

Export('trace')