blob: 0aa78081b016747477e30d1f04fe2a39c566a477 [file] [log] [blame]
Romain Guye4d01122010-06-16 18:44:05 -07001LOCAL_PATH:= $(call my-dir)
2include $(CLEAR_VARS)
Dan Albert88ba3392014-09-11 16:20:16 -07003LOCAL_ADDITIONAL_DEPENDENCIES := $(LOCAL_PATH)/Android.mk
Romain Guye4d01122010-06-16 18:44:05 -07004
sergeyv5bb56262016-10-10 12:25:06 -07005BUGREPORT_FONT_CACHE_USAGE := false
Chris Craikb565df12015-10-05 13:00:52 -07006
John Reck975591a2016-01-22 16:28:07 -08007# Enables fine-grained GLES error checking
8# If set to true, every GLES call is wrapped & error checked
9# Has moderate overhead
John Reck756619d2016-04-15 11:31:09 -070010HWUI_ENABLE_OPENGL_VALIDATION := false
John Reck975591a2016-01-22 16:28:07 -080011
John Reckd2e72142015-08-17 13:11:43 -070012hwui_src_files := \
sergeyvc1c54062016-10-19 18:47:26 -070013 hwui/Bitmap.cpp \
John Reckd2e72142015-08-17 13:11:43 -070014 font/CacheTexture.cpp \
15 font/Font.cpp \
sergeyvdccca442016-03-21 15:38:21 -070016 hwui/Canvas.cpp \
17 hwui/MinikinSkia.cpp \
18 hwui/MinikinUtils.cpp \
19 hwui/PaintImpl.cpp \
sergeyvbad99182016-03-17 11:24:22 -070020 hwui/Typeface.cpp \
John Reckd2e72142015-08-17 13:11:43 -070021 renderstate/Blend.cpp \
22 renderstate/MeshState.cpp \
Chris Craik9fded232015-11-11 16:42:34 -080023 renderstate/OffscreenBufferPool.cpp \
John Reckd2e72142015-08-17 13:11:43 -070024 renderstate/PixelBufferState.cpp \
25 renderstate/RenderState.cpp \
26 renderstate/Scissor.cpp \
27 renderstate/Stencil.cpp \
28 renderstate/TextureState.cpp \
29 renderthread/CanvasContext.cpp \
Stan Iliev768e3932016-07-08 21:34:52 -040030 renderthread/OpenGLPipeline.cpp \
John Reckd2e72142015-08-17 13:11:43 -070031 renderthread/DrawFrameTask.cpp \
32 renderthread/EglManager.cpp \
33 renderthread/RenderProxy.cpp \
34 renderthread/RenderTask.cpp \
35 renderthread/RenderThread.cpp \
36 renderthread/TimeLord.cpp \
37 thread/TaskManager.cpp \
38 utils/Blur.cpp \
39 utils/GLUtils.cpp \
40 utils/LinearAllocator.cpp \
Derek Sollenberger4c5efe92015-07-10 13:56:39 -040041 utils/NinePatchImpl.cpp \
Chris Craik6e6646c2015-09-14 15:54:12 -070042 utils/StringUtils.cpp \
Tom Hudsonb2f5bd22015-10-15 16:41:55 -040043 utils/TestWindowContext.cpp \
Doris Liu804618d2015-11-16 22:48:34 -080044 utils/VectorDrawableUtils.cpp \
John Reckd2e72142015-08-17 13:11:43 -070045 AmbientShadow.cpp \
46 AnimationContext.cpp \
47 Animator.cpp \
48 AnimatorManager.cpp \
Chris Craik5e00c7c2016-07-06 16:10:09 -070049 BakedOpDispatcher.cpp \
50 BakedOpRenderer.cpp \
51 BakedOpState.cpp \
John Reckd2e72142015-08-17 13:11:43 -070052 Caches.cpp \
53 CanvasState.cpp \
54 ClipArea.cpp \
55 DamageAccumulator.cpp \
John Reckd2e72142015-08-17 13:11:43 -070056 DeferredLayerUpdater.cpp \
John Reck704bed02015-11-05 09:22:17 -080057 DeviceInfo.cpp \
John Reckd2e72142015-08-17 13:11:43 -070058 DisplayList.cpp \
John Reckd2e72142015-08-17 13:11:43 -070059 Extensions.cpp \
60 FboCache.cpp \
61 FontRenderer.cpp \
Chris Craik5e00c7c2016-07-06 16:10:09 -070062 FrameBuilder.cpp \
John Reckd2e72142015-08-17 13:11:43 -070063 FrameInfo.cpp \
64 FrameInfoVisualizer.cpp \
65 GammaFontRenderer.cpp \
66 GlopBuilder.cpp \
John Reck38e0c322015-11-10 12:19:17 -080067 GpuMemoryTracker.cpp \
John Reckd2e72142015-08-17 13:11:43 -070068 GradientCache.cpp \
69 Image.cpp \
70 Interpolator.cpp \
71 JankTracker.cpp \
72 Layer.cpp \
Chris Craik5e00c7c2016-07-06 16:10:09 -070073 LayerBuilder.cpp \
Chris Craik0b7e8242015-10-28 16:50:44 -070074 LayerUpdateQueue.cpp \
John Reckd2e72142015-08-17 13:11:43 -070075 Matrix.cpp \
Chris Craik5e00c7c2016-07-06 16:10:09 -070076 OpDumper.cpp \
John Reckd2e72142015-08-17 13:11:43 -070077 Patch.cpp \
78 PatchCache.cpp \
79 PathCache.cpp \
Doris Liu30bcf692015-11-04 14:56:24 -080080 PathParser.cpp \
Chris Craik5e00c7c2016-07-06 16:10:09 -070081 PathTessellator.cpp \
John Reckd2e72142015-08-17 13:11:43 -070082 PixelBuffer.cpp \
83 Program.cpp \
84 ProgramCache.cpp \
85 Properties.cpp \
Doris Liu766431a2016-02-04 22:17:11 +000086 PropertyValuesAnimatorSet.cpp \
Chris Craik5e00c7c2016-07-06 16:10:09 -070087 PropertyValuesHolder.cpp \
John Reck10dd0582016-03-31 16:36:16 -070088 Readback.cpp \
Chris Craik5e00c7c2016-07-06 16:10:09 -070089 RecordingCanvas.cpp \
John Reckd2e72142015-08-17 13:11:43 -070090 RenderBufferCache.cpp \
91 RenderNode.cpp \
92 RenderProperties.cpp \
93 ResourceCache.cpp \
94 ShadowTessellator.cpp \
95 SkiaCanvas.cpp \
96 SkiaCanvasProxy.cpp \
Derek Sollenberger0df62092016-09-27 16:04:42 -040097 SkiaDisplayList.cpp \
John Reckd2e72142015-08-17 13:11:43 -070098 SkiaShader.cpp \
99 Snapshot.cpp \
100 SpotShadow.cpp \
101 TessellationCache.cpp \
102 TextDropShadowCache.cpp \
103 Texture.cpp \
John Recke248bd12015-08-05 13:53:53 -0700104 TextureCache.cpp \
Doris Liu4bbc2932015-12-01 17:59:40 -0800105 VectorDrawable.cpp \
John Recke248bd12015-08-05 13:53:53 -0700106 protos/hwui.proto
John Reckd2e72142015-08-17 13:11:43 -0700107
Chris Craik8160f202015-12-02 14:50:25 -0800108hwui_test_common_src_files := \
Chris Craik27e58b42015-12-07 10:01:38 -0800109 $(call all-cpp-files-under, tests/common/scenes) \
sergeyv7dc370b2016-06-17 11:21:11 -0700110 tests/common/LeakChecker.cpp \
sergeyv06a62f62016-06-16 14:52:20 -0700111 tests/common/TestListViewSceneBase.cpp \
Chris Craik27e58b42015-12-07 10:01:38 -0800112 tests/common/TestContext.cpp \
113 tests/common/TestScene.cpp \
Chris Craik8160f202015-12-02 14:50:25 -0800114 tests/common/TestUtils.cpp
115
sergeyv8bd5edf2016-05-13 15:03:35 -0700116hwui_debug_common_src_files := \
117 debug/wrap_gles.cpp \
118 debug/DefaultGlesDriver.cpp \
119 debug/GlesErrorCheckWrapper.cpp \
120 debug/GlesDriver.cpp \
121 debug/FatalBaseDriver.cpp \
122 debug/NullGlesDriver.cpp
123
John Reckd2e72142015-08-17 13:11:43 -0700124hwui_cflags := \
125 -DEGL_EGLEXT_PROTOTYPES -DGL_GLEXT_PROTOTYPES \
126 -DATRACE_TAG=ATRACE_TAG_VIEW -DLOG_TAG=\"OpenGLRenderer\" \
John Reck82f5e0c2015-10-22 17:07:45 -0700127 -Wall -Wno-unused-parameter -Wunreachable-code -Werror
John Reckd2e72142015-08-17 13:11:43 -0700128
John Reck2d5b8d72016-07-28 15:36:11 -0700129ifeq ($(TARGET_USES_HWC2),true)
130 hwui_cflags += -DUSE_HWC2
131endif
132
Romain Guy253f2c22016-09-28 17:34:42 -0700133# TODO: Linear blending should be enabled by default, but we are
134# TODO: making it an opt-in while it's a work in progress
135# TODO: The final test should be:
136# TODO: ifneq ($(TARGET_ENABLE_LINEAR_BLENDING),false)
137ifeq ($(TARGET_ENABLE_LINEAR_BLENDING),true)
138 hwui_cflags += -DANDROID_ENABLE_LINEAR_BLENDING
139endif
140
John Reckc90ed752015-11-04 07:39:44 -0800141# GCC false-positives on this warning, and since we -Werror that's
142# a problem
143hwui_cflags += -Wno-free-nonheap-object
144
John Reckf1480762016-07-03 18:28:25 -0700145# clang's warning is broken, see: https://llvm.org/bugs/show_bug.cgi?id=21629
146hwui_cflags += -Wno-missing-braces
147
sergeyvaf102be2016-09-09 18:02:07 -0700148ifeq (true, $(BUGREPORT_FONT_CACHE_USAGE))
149 hwui_src_files += \
150 font/FontCacheHistoryTracker.cpp
151 hwui_cflags += -DBUGREPORT_FONT_CACHE_USAGE
152endif
153
John Reckd2e72142015-08-17 13:11:43 -0700154ifndef HWUI_COMPILE_SYMBOLS
155 hwui_cflags += -fvisibility=hidden
156endif
157
158ifdef HWUI_COMPILE_FOR_PERF
159 # TODO: Non-arm?
160 hwui_cflags += -fno-omit-frame-pointer -marm -mapcs
161endif
162
John Recke248bd12015-08-05 13:53:53 -0700163# This has to be lazy-resolved because it depends on the LOCAL_MODULE_CLASS
164# which varies depending on what is being built
165define hwui_proto_include
166$(call local-generated-sources-dir)/proto/$(LOCAL_PATH)
167endef
168
John Reckd2e72142015-08-17 13:11:43 -0700169hwui_c_includes += \
Leon Scroggins III55078072015-07-31 10:38:40 -0400170 external/skia/include/private \
sergeyvdccca442016-03-21 15:38:21 -0700171 external/skia/src/core \
172 external/harfbuzz_ng/src \
173 external/freetype/include
John Reckd2e72142015-08-17 13:11:43 -0700174
John Reckd2e72142015-08-17 13:11:43 -0700175ifneq (false,$(ANDROID_ENABLE_RENDERSCRIPT))
176 hwui_cflags += -DANDROID_ENABLE_RENDERSCRIPT
John Reckd2e72142015-08-17 13:11:43 -0700177 hwui_c_includes += \
178 $(call intermediates-dir-for,STATIC_LIBRARIES,libRS,TARGET,) \
179 frameworks/rs/cpp \
180 frameworks/rs
181endif
182
John Reckd2e72142015-08-17 13:11:43 -0700183# ------------------------
184# static library
185# ------------------------
186
187include $(CLEAR_VARS)
188
189LOCAL_MODULE_CLASS := STATIC_LIBRARIES
190LOCAL_MODULE := libhwui_static
John Reckd2e72142015-08-17 13:11:43 -0700191LOCAL_CFLAGS := $(hwui_cflags)
192LOCAL_SRC_FILES := $(hwui_src_files)
sergeyv8bd5edf2016-05-13 15:03:35 -0700193
194ifeq (true, $(HWUI_ENABLE_OPENGL_VALIDATION))
195 LOCAL_CFLAGS += -include debug/wrap_gles.h
196 LOCAL_CFLAGS += -DDEBUG_OPENGL=3
197 LOCAL_SRC_FILES += $(hwui_debug_common_src_files)
198endif
199
John Recke248bd12015-08-05 13:53:53 -0700200LOCAL_C_INCLUDES := $(hwui_c_includes) $(call hwui_proto_include)
Derek Sollenberger991da312016-02-11 12:13:07 -0500201LOCAL_EXPORT_C_INCLUDE_DIRS := \
202 $(LOCAL_PATH) \
Derek Sollenberger991da312016-02-11 12:13:07 -0500203 $(call hwui_proto_include)
John Reckd2e72142015-08-17 13:11:43 -0700204
Derek Sollenberger991da312016-02-11 12:13:07 -0500205include $(LOCAL_PATH)/hwui_static_deps.mk
John Reckd2e72142015-08-17 13:11:43 -0700206include $(BUILD_STATIC_LIBRARY)
207
208# ------------------------
Chris Craik5fbd9db2015-10-19 11:22:11 -0700209# static library null gpu
210# ------------------------
211
212include $(CLEAR_VARS)
213
214LOCAL_MODULE_CLASS := STATIC_LIBRARIES
sergeyv8bd5edf2016-05-13 15:03:35 -0700215LOCAL_MODULE := libhwui_static_debug
Chris Craik5fbd9db2015-10-19 11:22:11 -0700216LOCAL_CFLAGS := \
217 $(hwui_cflags) \
sergeyv8bd5edf2016-05-13 15:03:35 -0700218 -include debug/wrap_gles.h \
Chris Craik5fbd9db2015-10-19 11:22:11 -0700219 -DHWUI_NULL_GPU
220LOCAL_SRC_FILES := \
221 $(hwui_src_files) \
sergeyv8bd5edf2016-05-13 15:03:35 -0700222 $(hwui_debug_common_src_files) \
223 debug/nullegl.cpp
Chris Craik5fbd9db2015-10-19 11:22:11 -0700224LOCAL_C_INCLUDES := $(hwui_c_includes) $(call hwui_proto_include)
Derek Sollenberger991da312016-02-11 12:13:07 -0500225LOCAL_EXPORT_C_INCLUDE_DIRS := \
226 $(LOCAL_PATH) \
Derek Sollenberger991da312016-02-11 12:13:07 -0500227 $(call hwui_proto_include)
Chris Craik5fbd9db2015-10-19 11:22:11 -0700228
Derek Sollenberger991da312016-02-11 12:13:07 -0500229include $(LOCAL_PATH)/hwui_static_deps.mk
Chris Craik5fbd9db2015-10-19 11:22:11 -0700230include $(BUILD_STATIC_LIBRARY)
231
232# ------------------------
John Reckd2e72142015-08-17 13:11:43 -0700233# shared library
234# ------------------------
235
236include $(CLEAR_VARS)
237
John Recka2732a22014-12-18 13:52:33 -0800238LOCAL_MODULE_CLASS := SHARED_LIBRARIES
239LOCAL_MODULE := libhwui
John Reckd2e72142015-08-17 13:11:43 -0700240LOCAL_WHOLE_STATIC_LIBRARIES := libhwui_static
Derek Sollenberger991da312016-02-11 12:13:07 -0500241LOCAL_EXPORT_C_INCLUDE_DIRS := $(LOCAL_PATH)
Romain Guye4d01122010-06-16 18:44:05 -0700242
Derek Sollenberger991da312016-02-11 12:13:07 -0500243include $(LOCAL_PATH)/hwui_static_deps.mk
John Recka2732a22014-12-18 13:52:33 -0800244include $(BUILD_SHARED_LIBRARY)
Andreas Gampeedaecc12014-11-10 20:54:07 -0800245
John Reckd2e72142015-08-17 13:11:43 -0700246# ------------------------
247# unit tests
248# ------------------------
249
250include $(CLEAR_VARS)
251
252LOCAL_MODULE := hwui_unit_tests
253LOCAL_MODULE_TAGS := tests
sergeyv8bd5edf2016-05-13 15:03:35 -0700254LOCAL_STATIC_LIBRARIES := libgmock libhwui_static_debug
John Reckdc87c522016-02-29 13:31:18 -0800255LOCAL_SHARED_LIBRARIES := libmemunreachable
Chris Craik98787e62015-11-13 10:55:30 -0800256LOCAL_CFLAGS := \
257 $(hwui_cflags) \
sergeyv8bd5edf2016-05-13 15:03:35 -0700258 -include debug/wrap_gles.h \
Chris Craik98787e62015-11-13 10:55:30 -0800259 -DHWUI_NULL_GPU
Dan Willemsene9c205b2016-03-07 12:58:33 -0800260LOCAL_C_INCLUDES := $(hwui_c_includes)
John Reckd2e72142015-08-17 13:11:43 -0700261
262LOCAL_SRC_FILES += \
Chris Craik8160f202015-12-02 14:50:25 -0800263 $(hwui_test_common_src_files) \
John Reckdc87c522016-02-29 13:31:18 -0800264 tests/unit/main.cpp \
Chris Craik5e00c7c2016-07-06 16:10:09 -0700265 tests/unit/BakedOpDispatcherTests.cpp \
266 tests/unit/BakedOpRendererTests.cpp \
267 tests/unit/BakedOpStateTests.cpp \
Chris Craik8160f202015-12-02 14:50:25 -0800268 tests/unit/CanvasStateTests.cpp \
269 tests/unit/ClipAreaTests.cpp \
270 tests/unit/DamageAccumulatorTests.cpp \
Derek Sollenberger56ad6ec2016-07-22 12:13:32 -0400271 tests/unit/DeferredLayerUpdaterTests.cpp \
Chris Craik8160f202015-12-02 14:50:25 -0800272 tests/unit/DeviceInfoTests.cpp \
273 tests/unit/FatVectorTests.cpp \
Chris Craikf3754a82016-04-19 18:13:21 -0700274 tests/unit/FontRendererTests.cpp \
Chris Craik5e00c7c2016-07-06 16:10:09 -0700275 tests/unit/FrameBuilderTests.cpp \
sergeyvf42bf3e2016-03-11 13:45:15 -0800276 tests/unit/GlopBuilderTests.cpp \
John Reck38e0c322015-11-10 12:19:17 -0800277 tests/unit/GpuMemoryTrackerTests.cpp \
Chris Craik04d46eb2016-04-07 13:51:07 -0700278 tests/unit/GradientCacheTests.cpp \
Chris Craik8160f202015-12-02 14:50:25 -0800279 tests/unit/LayerUpdateQueueTests.cpp \
Chris Craik5e00c7c2016-07-06 16:10:09 -0700280 tests/unit/LeakCheckTests.cpp \
Chris Craik8160f202015-12-02 14:50:25 -0800281 tests/unit/LinearAllocatorTests.cpp \
Chris Craik261725f2016-02-29 12:52:33 -0800282 tests/unit/MatrixTests.cpp \
sergeyv8bd5edf2016-05-13 15:03:35 -0700283 tests/unit/MeshStateTests.cpp \
Chris Craik8160f202015-12-02 14:50:25 -0800284 tests/unit/OffscreenBufferPoolTests.cpp \
Chris Craik5e00c7c2016-07-06 16:10:09 -0700285 tests/unit/OpDumperTests.cpp \
286 tests/unit/RecordingCanvasTests.cpp \
John Reck44b49f02016-03-25 14:29:48 -0700287 tests/unit/RenderNodeTests.cpp \
Chris Craikd4fe4d32016-06-09 16:57:11 -0700288 tests/unit/RenderPropertiesTests.cpp \
Chris Craik07d8d592016-02-03 18:43:04 -0800289 tests/unit/SkiaBehaviorTests.cpp \
Derek Sollenberger0df62092016-09-27 16:04:42 -0400290 tests/unit/SkiaDisplayListTests.cpp \
Chris Craik5e00c7c2016-07-06 16:10:09 -0700291 tests/unit/SkiaCanvasTests.cpp \
Chris Craik04d46eb2016-04-07 13:51:07 -0700292 tests/unit/SnapshotTests.cpp \
Andres Morales06f5bc72015-12-15 15:21:31 -0800293 tests/unit/StringUtilsTests.cpp \
Chris Craik37413282016-05-12 17:48:51 -0700294 tests/unit/TestUtilsTests.cpp \
Chris Craik07d8d592016-02-03 18:43:04 -0800295 tests/unit/TextDropShadowCacheTests.cpp \
Chris Craik5e00c7c2016-07-06 16:10:09 -0700296 tests/unit/VectorDrawableTests.cpp \
Chris Craikb565df12015-10-05 13:00:52 -0700297
Derek Sollenberger991da312016-02-11 12:13:07 -0500298include $(LOCAL_PATH)/hwui_static_deps.mk
John Reckd2e72142015-08-17 13:11:43 -0700299include $(BUILD_NATIVE_TEST)
300
301# ------------------------
Chris Craik8160f202015-12-02 14:50:25 -0800302# Macro-bench app
John Reckd2e72142015-08-17 13:11:43 -0700303# ------------------------
304
305include $(CLEAR_VARS)
306
307LOCAL_MODULE_PATH := $(TARGET_OUT_DATA)/local/tmp
sergeyv202c10b2016-07-11 17:53:45 -0700308LOCAL_MODULE:= hwuimacro
John Reckd2e72142015-08-17 13:11:43 -0700309LOCAL_MODULE_TAGS := tests
310LOCAL_MULTILIB := both
John Reckd2e72142015-08-17 13:11:43 -0700311LOCAL_CFLAGS := $(hwui_cflags)
Dan Willemsene9c205b2016-03-07 12:58:33 -0800312LOCAL_C_INCLUDES := $(hwui_c_includes)
John Reckd2e72142015-08-17 13:11:43 -0700313
sergeyv8bd5edf2016-05-13 15:03:35 -0700314# set to libhwui_static_debug to skip actual GL commands
Chris Craik5fbd9db2015-10-19 11:22:11 -0700315LOCAL_WHOLE_STATIC_LIBRARIES := libhwui_static
sergeyv7dc370b2016-06-17 11:21:11 -0700316LOCAL_SHARED_LIBRARIES := libmemunreachable
John Reckd2e72142015-08-17 13:11:43 -0700317
318LOCAL_SRC_FILES += \
Chris Craik8160f202015-12-02 14:50:25 -0800319 $(hwui_test_common_src_files) \
Chris Craik8160f202015-12-02 14:50:25 -0800320 tests/macrobench/TestSceneRunner.cpp \
321 tests/macrobench/main.cpp
John Reckd2e72142015-08-17 13:11:43 -0700322
Derek Sollenberger991da312016-02-11 12:13:07 -0500323include $(LOCAL_PATH)/hwui_static_deps.mk
sergeyv202c10b2016-07-11 17:53:45 -0700324include $(BUILD_NATIVE_BENCHMARK)
John Reck4a4bc892015-10-12 07:38:22 -0700325
326# ------------------------
327# Micro-bench app
328# ---------------------
329include $(CLEAR_VARS)
330
John Reck4a4bc892015-10-12 07:38:22 -0700331LOCAL_MODULE:= hwuimicro
332LOCAL_MODULE_TAGS := tests
Chris Craik8d1f2122015-11-24 16:40:09 -0800333LOCAL_CFLAGS := \
334 $(hwui_cflags) \
sergeyv8bd5edf2016-05-13 15:03:35 -0700335 -include debug/wrap_gles.h \
Chris Craik8d1f2122015-11-24 16:40:09 -0800336 -DHWUI_NULL_GPU
John Reck4a4bc892015-10-12 07:38:22 -0700337
John Reck2bee0dd2016-03-09 08:01:37 -0800338LOCAL_C_INCLUDES := $(hwui_c_includes)
John Reck4a4bc892015-10-12 07:38:22 -0700339
sergeyv8bd5edf2016-05-13 15:03:35 -0700340LOCAL_WHOLE_STATIC_LIBRARIES := libhwui_static_debug
sergeyv7dc370b2016-06-17 11:21:11 -0700341LOCAL_SHARED_LIBRARIES := libmemunreachable
John Reck4a4bc892015-10-12 07:38:22 -0700342
343LOCAL_SRC_FILES += \
Chris Craik8160f202015-12-02 14:50:25 -0800344 $(hwui_test_common_src_files) \
John Reck0418afa32016-03-07 13:24:25 -0800345 tests/microbench/main.cpp \
Chris Craik8160f202015-12-02 14:50:25 -0800346 tests/microbench/DisplayListCanvasBench.cpp \
John Reck2c0f9372016-03-28 09:34:35 -0700347 tests/microbench/FontBench.cpp \
Chris Craik5e00c7c2016-07-06 16:10:09 -0700348 tests/microbench/FrameBuilderBench.cpp \
Chris Craik8160f202015-12-02 14:50:25 -0800349 tests/microbench/LinearAllocatorBench.cpp \
350 tests/microbench/PathParserBench.cpp \
Chris Craikb251a2f2016-02-08 19:36:46 +0000351 tests/microbench/ShadowBench.cpp \
352 tests/microbench/TaskManagerBench.cpp
John Reck4a4bc892015-10-12 07:38:22 -0700353
Chris Craik0a24b142015-10-19 17:10:19 -0700354
Derek Sollenberger991da312016-02-11 12:13:07 -0500355include $(LOCAL_PATH)/hwui_static_deps.mk
sergeyv422e2b42016-06-20 15:27:39 -0700356include $(BUILD_NATIVE_BENCHMARK)