blob: 1b7db184d75412f66f544686898e6af73c1b199f [file] [log] [blame]
Brian Muramatsu471beda2012-03-05 18:46:33 -08001# Copyright (C) 2012 The Android Open Source Project
2#
3# Licensed under the Apache License, Version 2.0 (the "License");
4# you may not use this file except in compliance with the License.
5# You may obtain a copy of the License at
6#
7# http://www.apache.org/licenses/LICENSE-2.0
8#
9# Unless required by applicable law or agreed to in writing, software
10# distributed under the License is distributed on an "AS IS" BASIS,
11# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
12# See the License for the specific language governing permissions and
13# limitations under the License.
14
15LOCAL_PATH:= $(call my-dir)
16
17include $(CLEAR_VARS)
18
Stuart Scotta1f2d052013-11-13 11:21:30 -080019LOCAL_SRC_FILES := \
20 $(call all-java-files-under, src) \
21 $(call all-java-files-under, ../commonutil/src)
Stuart Scotta132af62013-11-07 10:30:32 -080022
23LOCAL_JAVA_LIBRARIES := android.test.runner
24
Stuart Scotta1f2d052013-11-13 11:21:30 -080025LOCAL_ADDITIONAL_DEPENDENCIES := $(LOCAL_PATH)/Android.mk
26
Brian Muramatsu471beda2012-03-05 18:46:33 -080027LOCAL_MODULE_TAGS := optional
28
Stuart Scotta132af62013-11-07 10:30:32 -080029LOCAL_MODULE := ctsdeviceutil
Brian Muramatsu471beda2012-03-05 18:46:33 -080030
31include $(BUILD_STATIC_JAVA_LIBRARY)