Android.mk 564 B

12345678910111213141516171819202122
  1. # Copyright (c) Facebook, Inc. and its affiliates.
  2. #
  3. # This source code is licensed under the MIT license found in the
  4. # LICENSE file in the root directory of this source tree.
  5. LOCAL_PATH := $(call my-dir)
  6. include $(CLEAR_VARS)
  7. LOCAL_MODULE := jsireact
  8. LOCAL_SRC_FILES := $(wildcard $(LOCAL_PATH)/jsireact/*.cpp)
  9. LOCAL_C_INCLUDES := $(LOCAL_PATH)
  10. LOCAL_EXPORT_C_INCLUDES := $(LOCAL_C_INCLUDES)
  11. LOCAL_CFLAGS := -fexceptions -frtti -O3
  12. LOCAL_STATIC_LIBRARIES := libjsi reactnative
  13. LOCAL_SHARED_LIBRARIES := libfolly_json glog
  14. include $(BUILD_STATIC_LIBRARY)