diff --git a/ReactAndroid/src/main/jni/react/Android.mk b/ReactAndroid/src/main/jni/react/Android.mk index e0fff0070..cf522d8df 100644 --- a/ReactAndroid/src/main/jni/react/Android.mk +++ b/ReactAndroid/src/main/jni/react/Android.mk @@ -6,10 +6,11 @@ LOCAL_MODULE := libreactnative LOCAL_SRC_FILES := \ Bridge.cpp \ - Value.cpp \ - MethodCall.cpp \ - JSCHelpers.cpp \ JSCExecutor.cpp \ + JSCHelpers.cpp \ + JSCWebWorker.cpp \ + MethodCall.cpp \ + Value.cpp \ LOCAL_C_INCLUDES := $(LOCAL_PATH)/.. LOCAL_EXPORT_C_INCLUDES := $(LOCAL_C_INCLUDES) @@ -29,4 +30,4 @@ include $(BUILD_STATIC_LIBRARY) $(call import-module,fb) $(call import-module,jni) $(call import-module,folly) -$(call import-module,jsc) \ No newline at end of file +$(call import-module,jsc) diff --git a/ReactAndroid/src/main/jni/react/jni/Android.mk b/ReactAndroid/src/main/jni/react/jni/Android.mk index 1a829fad5..bb051ddaf 100644 --- a/ReactAndroid/src/main/jni/react/jni/Android.mk +++ b/ReactAndroid/src/main/jni/react/jni/Android.mk @@ -5,10 +5,11 @@ include $(CLEAR_VARS) LOCAL_MODULE := reactnativejni LOCAL_SRC_FILES := \ + JMessageQueueThread.cpp \ + JSLoader.cpp \ + NativeArray.cpp \ OnLoad.cpp \ ProxyExecutor.cpp \ - NativeArray.cpp \ - JSLoader.cpp \ LOCAL_C_INCLUDES := $(LOCAL_PATH) @@ -27,4 +28,4 @@ $(call import-module,react) $(call import-module,jsc) $(call import-module,folly) $(call import-module,jni) -$(call import-module,jsc) \ No newline at end of file +$(call import-module,jsc)