Android.mk 459 B

12345678910111213141516171819
  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 := jsinspector
  8. LOCAL_SRC_FILES := $(wildcard $(LOCAL_PATH)/*.cpp)
  9. LOCAL_C_INCLUDES := $(LOCAL_PATH)/..
  10. LOCAL_EXPORT_C_INCLUDES := $(LOCAL_C_INCLUDES)
  11. LOCAL_CFLAGS += -fexceptions
  12. include $(BUILD_SHARED_LIBRARY)