-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathMakefile.skia
More file actions
25 lines (20 loc) · 757 Bytes
/
Copy pathMakefile.skia
File metadata and controls
25 lines (20 loc) · 757 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
DEFINES += USE_SKIA SK_RELEASE GR_RELEASE
LIBS += -L$(MOZ2D_SKIA)/out/Release/ -Wl,--start-group -lskia_skgpu -lskia_core -lskia_ports -lskia_effects -lskia_sfnt -lskia_utils -lskia_core -lskia_opts -lskia_opts_ssse3 -lskia_ports -lskia_images -Wl,--end-group -lpthread -lGL
ifeq ($(UNAME),Linux)
LIBS += -lfreetype -lfontconfig
endif
MOZ2D_CPPSRCS += \
DrawTargetSkia.cpp \
PathSkia.cpp \
ScaledFontSkia.cpp \
SourceSurfaceSkia.cpp \
$(NULL)
INCLUDES += $(MOZ2D_SKIA)/include \
$(MOZ2D_SKIA)/include/core \
$(MOZ2D_SKIA)/include/config \
$(MOZ2D_SKIA)/include/utils \
$(MOZ2D_SKIA)/include/gpu \
$(NULL)
PERFTEST_CPPSRCS += \
perftest/TestDrawTargetSkiaSoftware.cpp \
$(NULL)