mirror of
https://github.com/status-im/react-native.git
synced 2025-01-30 11:14:49 +00:00
07ef5a8fe9
Summary: Builds and ships libcsslayout.so with Android builds. This is not used yet, but a follow up diff will shortly move us from CSSNodeDEPRECATED to CSSNode (which uses libcsslayout) Reviewed By: emilsjolander Differential Revision: D4168140 fbshipit-source-id: d72bded88df81e4d54df31a08e4b101834770a73
17 lines
312 B
Makefile
17 lines
312 B
Makefile
LOCAL_PATH := $(call my-dir)
|
|
|
|
include $(CLEAR_VARS)
|
|
|
|
LOCAL_MODULE := csslayoutcore
|
|
|
|
LOCAL_SRC_FILES := \
|
|
CSSLayout.c \
|
|
CSSNodeList.c
|
|
|
|
LOCAL_C_INCLUDES := $(LOCAL_PATH)
|
|
LOCAL_EXPORT_C_INCLUDES := $(LOCAL_C_INCLUDES)
|
|
|
|
LOCAL_CFLAGS := -Wall -Werror -fexceptions -frtti -std=c99
|
|
|
|
include $(BUILD_STATIC_LIBRARY)
|