mirror of
https://repo.dactyloidae.xyz/Dactyloidae/UXP.git
synced 2026-09-28 03:17:31 +09:00
13 lines
328 B
INI
13 lines
328 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 += [
|
||
|
|
'webrender.c',
|
||
|
|
]
|
||
|
|
|
||
|
|
FINAL_LIBRARY = 'xul'
|