Chromium Code Reviews| Index: platform_tools/android/tests/expectations/Android.mk |
| diff --git a/platform_tools/android/tests/expectations/Android.mk b/platform_tools/android/tests/expectations/Android.mk |
| index c7ac190422275954f2ec0fa1ec493e9fbf7c4edf..6b2813842b5dcf498ef20ed35e6ea25c7cd4b449 100644 |
| --- a/platform_tools/android/tests/expectations/Android.mk |
| +++ b/platform_tools/android/tests/expectations/Android.mk |
| @@ -8,7 +8,7 @@ |
| ############################################################################### |
| BASE_PATH := $(call my-dir) |
| -LOCAL_PATH:= $(call my-dir) |
| +LOCAL_PATH := $(call my-dir) |
| ############################################################################### |
| # |
| @@ -34,7 +34,17 @@ LOCAL_PATH:= $(call my-dir) |
| # determine which build type to use. |
| ############################################################################### |
| + |
| +############################################################################### |
| +# STATIC LIBRARY |
| +# |
| +# This target is only to be used internally for only one of two purposes... |
| +# (1) statically linking into testing frameworks |
| +# (2) as an inclusion target for the libskia.so shared library |
| +############################################################################### |
| + |
| include $(CLEAR_VARS) |
| + |
| LOCAL_FDO_SUPPORT := true |
| ifneq ($(strip $(TARGET_FDO_CFLAGS)),) |
| # This should be the last -Oxxx specified in LOCAL_CFLAGS |
| @@ -45,10 +55,6 @@ LOCAL_ARM_MODE := thumb |
| # used for testing |
| #LOCAL_CFLAGS += -g -O0 |
| -ifeq ($(NO_FALLBACK_FONT),true) |
| - LOCAL_CFLAGS += -DNO_FALLBACK_FONT |
| -endif |
| - |
| LOCAL_CFLAGS += \ |
| local_cflags |
| @@ -77,7 +83,7 @@ LOCAL_MODULE_TAGS := \ |
| local_module_tags |
| LOCAL_MODULE := \ |
| - local_module |
| + local_module_static |
|
scroggo
2016/02/12 15:00:31
It looks like this is the only one that uses a tab
djsollen
2016/02/12 15:57:56
I didn't change the behavior and looking at the co
scroggo
2016/02/12 16:11:58
My bad - they're all tabs. reitveld is just showin
|
| ifeq ($(COND), true) |
| LOCAL_CFLAGS_foo += \ |
| @@ -142,6 +148,23 @@ LOCAL_MODULE_TAGS_bar += \ |
| LOCAL_MODULE_bar += \ |
| local_module_bar |
| +LOCAL_MODULE_CLASS := STATIC_LIBRARIES |
| +include $(BUILD_STATIC_LIBRARY) |
| + |
| + |
| +############################################################################### |
| +# SHARED LIBRARY |
| +############################################################################### |
| + |
| +include $(CLEAR_VARS) |
| + |
| +LOCAL_MODULE_CLASS := SHARED_LIBRARIES |
| +LOCAL_MODULE := local_module |
| +LOCAL_WHOLE_STATIC_LIBRARIES := local_module_static |
| +LOCAL_EXPORT_C_INCLUDE_DIRS := \ |
| + local_export_c_include_dirs |
| + |
| +include $(BASE_PATH)/skia_static_deps.mk |
| include $(BUILD_SHARED_LIBRARY) |
| ############################################################# |