Home | History | Annotate | Download | only in sw
      1 Import('*')
      2 
      3 env = env.Clone()
      4 
      5 i915_sw_sources = [
      6     'i915_sw_batchbuffer.c',
      7     'i915_sw_buffer.c',
      8     'i915_sw_winsys.c',
      9     'i915_sw_fence.c',
     10 ]
     11 
     12 i915sw = env.ConvenienceLibrary(
     13     target ='i915sw',
     14     source = i915_sw_sources,
     15 )
     16 
     17 Export('i915sw')
     18