Merge "Remove support for stlport." am: 9eba210e23

am: c9c0a83c21

Change-Id: Ib4d71334c1b532e4e24a17670aed9e64bafd8d9c
This commit is contained in:
Dan Albert 2018-01-10 00:31:15 +00:00 committed by android-build-merger
commit 4334adeca2
4 changed files with 8 additions and 36 deletions

View File

@ -28,12 +28,6 @@ ifdef LOCAL_SDK_VERSION
else ifeq ($(LOCAL_NDK_STL_VARIANT),c++_static) else ifeq ($(LOCAL_NDK_STL_VARIANT),c++_static)
my_ndk_stl_family := libc++ my_ndk_stl_family := libc++
my_ndk_stl_link_type := static my_ndk_stl_link_type := static
else ifeq ($(LOCAL_NDK_STL_VARIANT),stlport_shared)
my_ndk_stl_family := stlport
my_ndk_stl_link_type := shared
else ifeq ($(LOCAL_NDK_STL_VARIANT),stlport_static)
my_ndk_stl_family := stlport
my_ndk_stl_link_type := static
else ifeq ($(LOCAL_NDK_STL_VARIANT),none) else ifeq ($(LOCAL_NDK_STL_VARIANT),none)
my_ndk_stl_family := none my_ndk_stl_family := none
my_ndk_stl_link_type := none my_ndk_stl_link_type := none
@ -66,8 +60,7 @@ ifdef LOCAL_SDK_VERSION
# already been checked for consistency, and if they don't they'll be # already been checked for consistency, and if they don't they'll be
# kept isolated by RTLD_LOCAL anyway. # kept isolated by RTLD_LOCAL anyway.
my_allowed_ndk_types += \ my_allowed_ndk_types += \
native:ndk:libc++:shared native:ndk:libc++:static \ native:ndk:libc++:shared native:ndk:libc++:static
native:ndk:stlport:shared native:ndk:stlport:static \
# The "none" link type that used by static libraries is intentionally # The "none" link type that used by static libraries is intentionally
# omitted here. We should only be dealing with shared libraries in # omitted here. We should only be dealing with shared libraries in

View File

@ -189,24 +189,14 @@ ifneq ($(LOCAL_SDK_VERSION),)
ifeq (,$(LOCAL_NDK_STL_VARIANT)) ifeq (,$(LOCAL_NDK_STL_VARIANT))
LOCAL_NDK_STL_VARIANT := system LOCAL_NDK_STL_VARIANT := system
endif endif
ifneq (1,$(words $(filter none system stlport_static stlport_shared c++_static c++_shared, $(LOCAL_NDK_STL_VARIANT)))) ifneq (1,$(words $(filter none system c++_static c++_shared, $(LOCAL_NDK_STL_VARIANT))))
$(error $(LOCAL_PATH): Unknown LOCAL_NDK_STL_VARIANT $(LOCAL_NDK_STL_VARIANT)) $(error $(LOCAL_PATH): Unknown LOCAL_NDK_STL_VARIANT $(LOCAL_NDK_STL_VARIANT))
endif endif
ifeq (system,$(LOCAL_NDK_STL_VARIANT)) ifeq (system,$(LOCAL_NDK_STL_VARIANT))
my_ndk_stl_include_path := $(my_ndk_source_root)/cxx-stl/system/include my_ndk_stl_include_path := $(my_ndk_source_root)/cxx-stl/system/include
my_system_shared_libraries += libstdc++ my_system_shared_libraries += libstdc++
else # LOCAL_NDK_STL_VARIANT is not system else ifneq (,$(filter c++_%, $(LOCAL_NDK_STL_VARIANT)))
ifneq (,$(filter stlport_%, $(LOCAL_NDK_STL_VARIANT)))
my_ndk_stl_include_path := $(my_ndk_source_root)/cxx-stl/stlport/stlport
my_system_shared_libraries += libstdc++
ifeq (stlport_static,$(LOCAL_NDK_STL_VARIANT))
my_ndk_stl_static_lib := $(my_ndk_source_root)/cxx-stl/stlport/libs/$(my_cpu_variant)/libstlport_static.a
my_ldlibs += -ldl
else
my_ndk_stl_shared_lib_fullpath := $(my_ndk_source_root)/cxx-stl/stlport/libs/$(my_cpu_variant)/libstlport_shared.so
endif
else # LOCAL_NDK_STL_VARIANT is not stlport_* either
ifneq (,$(filter c++_%, $(LOCAL_NDK_STL_VARIANT)))
my_ndk_stl_include_path := \ my_ndk_stl_include_path := \
$(my_ndk_source_root)/cxx-stl/llvm-libc++/include $(my_ndk_source_root)/cxx-stl/llvm-libc++/include
my_ndk_stl_include_path += \ my_ndk_stl_include_path += \
@ -235,8 +225,6 @@ ifneq ($(LOCAL_SDK_VERSION),)
else # LOCAL_NDK_STL_VARIANT must be none else # LOCAL_NDK_STL_VARIANT must be none
# Do nothing. # Do nothing.
endif endif
endif
endif
endif endif
ifneq ($(LOCAL_USE_VNDK),) ifneq ($(LOCAL_USE_VNDK),)

View File

@ -24,16 +24,11 @@ my_embedded_prebuilt_jni_libs :=
ifdef my_embed_jni ifdef my_embed_jni
# App explicitly requires the prebuilt NDK stl shared libraies. # App explicitly requires the prebuilt NDK stl shared libraies.
# The NDK stl shared libraries should never go to the system image. # The NDK stl shared libraries should never go to the system image.
ifneq ($(filter $(LOCAL_NDK_STL_VARIANT), stlport_shared c++_shared),) ifeq ($(LOCAL_NDK_STL_VARIANT),c++_shared)
ifndef LOCAL_SDK_VERSION ifndef LOCAL_SDK_VERSION
$(error LOCAL_SDK_VERSION must be defined with LOCAL_NDK_STL_VARIANT, \ $(error LOCAL_SDK_VERSION must be defined with LOCAL_NDK_STL_VARIANT, \
LOCAL_PACKAGE_NAME=$(LOCAL_PACKAGE_NAME)) LOCAL_PACKAGE_NAME=$(LOCAL_PACKAGE_NAME))
endif endif
endif
ifeq (stlport_shared,$(LOCAL_NDK_STL_VARIANT))
my_jni_shared_libraries += \
$(HISTORICAL_NDK_VERSIONS_ROOT)/$(LOCAL_NDK_VERSION)/sources/cxx-stl/stlport/libs/$(TARGET_$(my_2nd_arch_prefix)CPU_ABI)/libstlport_shared.so
else ifeq (c++_shared,$(LOCAL_NDK_STL_VARIANT))
my_jni_shared_libraries += \ my_jni_shared_libraries += \
$(HISTORICAL_NDK_VERSIONS_ROOT)/$(LOCAL_NDK_VERSION)/sources/cxx-stl/llvm-libc++/libs/$(TARGET_$(my_2nd_arch_prefix)CPU_ABI)/libc++_shared.so $(HISTORICAL_NDK_VERSIONS_ROOT)/$(LOCAL_NDK_VERSION)/sources/cxx-stl/llvm-libc++/libs/$(TARGET_$(my_2nd_arch_prefix)CPU_ABI)/libc++_shared.so
endif endif

View File

@ -8,13 +8,9 @@ ifeq ($(LOCAL_GTEST),true)
ifndef LOCAL_SDK_VERSION ifndef LOCAL_SDK_VERSION
LOCAL_STATIC_LIBRARIES += libgtest_main libgtest LOCAL_STATIC_LIBRARIES += libgtest_main libgtest
else else
ifneq (,$(filter c++_%,$(LOCAL_NDK_STL_VARIANT))) # TODO(danalbert): Remove the suffix from the module since we only need the
my_ndk_gtest_suffix := _c++ # one variant now.
else ifneq ($(filter stlport_,$(LOCAL_NDK_STL_VARIANT)),) my_ndk_gtest_suffix := _c++
my_ndk_gtest_suffix := _stlport
else # system STL, use stlport
my_ndk_gtest_suffix := _stlport
endif
LOCAL_STATIC_LIBRARIES += \ LOCAL_STATIC_LIBRARIES += \
libgtest_main_ndk$(my_ndk_gtest_suffix) \ libgtest_main_ndk$(my_ndk_gtest_suffix) \
libgtest_ndk$(my_ndk_gtest_suffix) libgtest_ndk$(my_ndk_gtest_suffix)