From bfcce36efbe64b5bc064dac090b8de68b0337664 Mon Sep 17 00:00:00 2001 From: Andy Street Date: Tue, 12 Jan 2016 07:40:50 -0800 Subject: [PATCH] Update Android.mk files to fix github build Summary: public Since we don't use BUCK in OSS, we also have to update the Android.mk files :( Reviewed By: bestander Differential Revision: D2823434 fb-gh-sync-id: 4feef307f8f158653ef8e76d72447d79f47c329a --- ReactAndroid/src/main/jni/react/Android.mk | 9 +++++---- ReactAndroid/src/main/jni/react/jni/Android.mk | 7 ++++--- 2 files changed, 9 insertions(+), 7 deletions(-) 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)