mirror of
https://github.com/facebook/react-native.git
synced 2025-11-01 09:14:26 +00:00
c21e36db45
Summary: Hermes has been updated to [v0.1.1](https://github.com/facebook/hermes/releases/tag/v0.1.1) and [renamed from 'hermesvm' to 'hermes-engine'](https://github.com/facebook/hermes/commit/c74842ee5c4d11dc9fe3bf012f97a0e3fde6d54f) ## Changelog [Android] [Changed] - Bump hermes to v0.1.1 Pull Request resolved: https://github.com/facebook/react-native/pull/25908 Test Plan: RNTester builds and runs as expected Differential Revision: D16645811 Pulled By: cpojer fbshipit-source-id: 4fb6a3160df2c6d08140dd1fee51acf9ff8baffc
27 lines
949 B
Makefile
27 lines
949 B
Makefile
# Copyright (c) Facebook, Inc. and its affiliates.
|
|
#
|
|
# This source code is licensed under the MIT license found in the
|
|
# LICENSE file in the root directory of this source tree.
|
|
|
|
LOCAL_PATH := $(call my-dir)
|
|
|
|
include $(CLEAR_VARS)
|
|
REACT_NATIVE := $(LOCAL_PATH)/../../..
|
|
|
|
LOCAL_MODULE := hermes-inspector
|
|
|
|
LOCAL_SRC_FILES := $(wildcard $(LOCAL_PATH)/*.cpp $(LOCAL_PATH)/detail/*.cpp $(LOCAL_PATH)/chrome/*.cpp)
|
|
|
|
LOCAL_C_ROOT := $(LOCAL_PATH)/../..
|
|
|
|
LOCAL_CFLAGS := -DHERMES_ENABLE_DEBUGGER=1
|
|
LOCAL_C_INCLUDES := $(LOCAL_C_ROOT) $(REACT_NATIVE)/ReactCommon/jsi $(REACT_NATIVE)/node_modules/hermes-engine/android/include $(REACT_NATIVE)/../hermes-engine/android/include $(REACT_NATIVE)/../node_modules/hermes-engine/include
|
|
LOCAL_EXPORT_C_INCLUDES := $(LOCAL_C_ROOT)
|
|
|
|
LOCAL_CPP_FEATURES := exceptions
|
|
|
|
LOCAL_STATIC_LIBRARIES := libjsi
|
|
LOCAL_SHARED_LIBRARIES := jsinspector libfb libfolly_futures libfolly_json libhermes
|
|
|
|
include $(BUILD_SHARED_LIBRARY)
|