Paul Duffin d25de15983 Stop dynamically depending on legacy-android-test
The legacy-android-test target is deprecated.

The following change descriptions were generated automatically and so
may be a little repetitive. They are provided to give the reviewer
enough information to check the comments match what has actually been
changed and check the reasoning behind the changes.

* services/tests/shortcutmanagerutils/Android.mk
    Removed legacy-android-test from LOCAL_JAVA_LIBRARIES because
    legacy-android-test is deprecated and ShortcutManagerTestUtils
    source does not depend on it or its classes.

Bug: 30188076
Test: make checkbuild
Change-Id: I1136dde4beb556b839c2c1adf4f1c2264c0cbf5b
2017-12-13 07:37:49 +00:00

33 lines
936 B
Makefile

# Copyright (C) 2016 The Android Open Source Project
#
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
# You may obtain a copy of the License at
#
# http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing, software
# distributed under the License is distributed on an "AS IS" BASIS,
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
# See the License for the specific language governing permissions and
# limitations under the License.
LOCAL_PATH:= $(call my-dir)
include $(CLEAR_VARS)
LOCAL_SRC_FILES := \
$(call all-java-files-under, src)
LOCAL_JAVA_LIBRARIES := \
mockito-target \
android.test.runner.stubs
LOCAL_MODULE_TAGS := optional
LOCAL_MODULE := ShortcutManagerTestUtils
LOCAL_SDK_VERSION := test_current
include $(BUILD_STATIC_JAVA_LIBRARY)