mirror of
https://repo.dactyloidae.xyz/Dactyloidae/UXP.git
synced 2026-09-22 08:27:31 +09:00
20 lines
459 B
INI
20 lines
459 B
INI
# -*- Mode: python; c-basic-offset: 4; indent-tabs-mode: nil; tab-width: 40 -*-
|
|
|
|
# The retained display-list core is deliberately C-only. GPU backends can
|
|
# consume the emitted instanced-quad stream through a stable C ABI.
|
|
EXPORTS.mozilla.gfx += [
|
|
'webrender.h',
|
|
]
|
|
|
|
SOURCES += [
|
|
'wr_context.c',
|
|
'wr_display_list.c',
|
|
'wr_frame.c',
|
|
'wr_frame_packet.c',
|
|
'wr_retained.c',
|
|
'wr_util.c',
|
|
]
|
|
|
|
FINAL_LIBRARY = 'xul'
|
|
|
|
TEST_DIRS += ['tests']
|