mirror of
https://repo.dactyloidae.xyz/Dactyloidae/UXP.git
synced 2026-09-28 03:17:31 +09:00
Issue #80 - De-unify gfx/skia and stop using dangerous opts
This commit is contained in:
parent
5a3a186912
commit
b22c360506
2 changed files with 12 additions and 12 deletions
|
|
@ -28,7 +28,7 @@ if CONFIG['MOZ_OPTIMIZE']:
|
|||
if CONFIG['_MSC_VER']:
|
||||
skia_opt_flags += ['-O2']
|
||||
elif CONFIG['GNU_CC']:
|
||||
skia_opt_flags += ['-O3']
|
||||
skia_opt_flags += ['-O2']
|
||||
|
||||
"""
|
||||
|
||||
|
|
@ -79,7 +79,7 @@ if CONFIG['MOZ_WIDGET_TOOLKIT'] in {
|
|||
if CONFIG['MOZ_WIDGET_TOOLKIT'] == 'windows':
|
||||
DEFINES['UNICODE'] = True
|
||||
DEFINES['_UNICODE'] = True
|
||||
UNIFIED_SOURCES += [
|
||||
SOURCES += [
|
||||
'skia/src/fonts/SkFontMgr_indirect.cpp',
|
||||
'skia/src/fonts/SkRemotableFontMgr.cpp',
|
||||
]
|
||||
|
|
@ -415,7 +415,7 @@ def write_sources(f, values, indent):
|
|||
else:
|
||||
sources['unified'].add(item)
|
||||
|
||||
write_list(f, "UNIFIED_SOURCES", sources['unified'], indent)
|
||||
write_list(f, "SOURCES", sources['unified'], indent)
|
||||
write_list(f, "SOURCES", sources['nonunified'], indent)
|
||||
|
||||
def write_list(f, name, values, indent):
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue