Skip to content

Commit bfcce36

Browse files
astreetfacebook-github-bot-2
authored andcommitted
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
1 parent 9bbcb5b commit bfcce36

2 files changed

Lines changed: 9 additions & 7 deletions

File tree

ReactAndroid/src/main/jni/react/Android.mk

Lines changed: 5 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -6,10 +6,11 @@ LOCAL_MODULE := libreactnative
66

77
LOCAL_SRC_FILES := \
88
Bridge.cpp \
9-
Value.cpp \
10-
MethodCall.cpp \
11-
JSCHelpers.cpp \
129
JSCExecutor.cpp \
10+
JSCHelpers.cpp \
11+
JSCWebWorker.cpp \
12+
MethodCall.cpp \
13+
Value.cpp \
1314

1415
LOCAL_C_INCLUDES := $(LOCAL_PATH)/..
1516
LOCAL_EXPORT_C_INCLUDES := $(LOCAL_C_INCLUDES)
@@ -29,4 +30,4 @@ include $(BUILD_STATIC_LIBRARY)
2930
$(call import-module,fb)
3031
$(call import-module,jni)
3132
$(call import-module,folly)
32-
$(call import-module,jsc)
33+
$(call import-module,jsc)

ReactAndroid/src/main/jni/react/jni/Android.mk

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -5,10 +5,11 @@ include $(CLEAR_VARS)
55
LOCAL_MODULE := reactnativejni
66

77
LOCAL_SRC_FILES := \
8+
JMessageQueueThread.cpp \
9+
JSLoader.cpp \
10+
NativeArray.cpp \
811
OnLoad.cpp \
912
ProxyExecutor.cpp \
10-
NativeArray.cpp \
11-
JSLoader.cpp \
1213

1314
LOCAL_C_INCLUDES := $(LOCAL_PATH)
1415

@@ -27,4 +28,4 @@ $(call import-module,react)
2728
$(call import-module,jsc)
2829
$(call import-module,folly)
2930
$(call import-module,jni)
30-
$(call import-module,jsc)
31+
$(call import-module,jsc)

0 commit comments

Comments
 (0)