Allow to force min sdk given to Jack
Allows setting the min sdk version for target Jack commands,
overriding the default value obtained from LOCAL_SDK_CURRENT.
Bug: 28188420
(cherry picked from commit 109141ccc9
)
Change-Id: Id9c5275bc71b8d9042173bf1e40aa3199e9508e6
This commit is contained in:
parent
2e2c137913
commit
d98c42071a
2 changed files with 5 additions and 0 deletions
|
@ -116,6 +116,7 @@ LOCAL_JACK_COVERAGE_EXCLUDE_FILTER:=
|
|||
LOCAL_JILL_FLAGS:=
|
||||
LOCAL_CERTIFICATE:=
|
||||
LOCAL_SDK_VERSION:=
|
||||
LOCAL_MIN_SDK_VERSION:=
|
||||
LOCAL_SDK_RES_VERSION:=
|
||||
LOCAL_NDK_STL_VARIANT:=
|
||||
LOCAL_EMMA_INSTRUMENT:=
|
||||
|
|
|
@ -55,6 +55,10 @@ else
|
|||
endif
|
||||
endif
|
||||
|
||||
ifneq (,$(strip $(LOCAL_MIN_SDK_VERSION)))
|
||||
my_jack_min_sdk_version := $(LOCAL_MIN_SDK_VERSION)
|
||||
endif
|
||||
|
||||
proto_sources := $(filter %.proto,$(LOCAL_SRC_FILES))
|
||||
ifneq ($(proto_sources),)
|
||||
ifeq ($(LOCAL_PROTOC_OPTIMIZE_TYPE),micro)
|
||||
|
|
Loading…
Reference in a new issue