Merge "Warn about the use of COVERAGE_PATHS
and COVERAGE_EXCLUDE_PATHS
." am: 4a203a6326
Original change: https://android-review.googlesource.com/c/platform/build/+/1328973 Change-Id: I70dba2218f426c7bba388433593d89516fadd6c3
This commit is contained in:
commit
053e972a22
1 changed files with 9 additions and 0 deletions
|
@ -102,6 +102,15 @@ ifeq (true,$(EMMA_INSTRUMENT_STATIC))
|
||||||
EMMA_INSTRUMENT := true
|
EMMA_INSTRUMENT := true
|
||||||
endif
|
endif
|
||||||
|
|
||||||
|
# TODO(b/158212027): Turn this into an error when all users have been moved to
|
||||||
|
# `NATIVE_COVERAGE_PATHS` and `NATIVE_COVERAGE_EXCLUDE_PATHS`.
|
||||||
|
ifneq ($(COVERAGE_PATHS),)
|
||||||
|
$(warning Variable COVERAGE_PATHS is deprecated. Please use NATIVE_COVERAGE_PATHS instead.)
|
||||||
|
endif
|
||||||
|
ifneq ($(COVERAGE_EXCLUDE_PATHS),)
|
||||||
|
$(warning Variable COVERAGE_EXCLUDE_PATHS is deprecated. Please use NATIVE_COVERAGE_EXCLUDE_PATHS instead.)
|
||||||
|
endif
|
||||||
|
|
||||||
ifeq (true,$(EMMA_INSTRUMENT))
|
ifeq (true,$(EMMA_INSTRUMENT))
|
||||||
# Adding the jacoco library can cause the inclusion of
|
# Adding the jacoco library can cause the inclusion of
|
||||||
# some typically banned classes
|
# some typically banned classes
|
||||||
|
|
Loading…
Reference in a new issue