blob: c06a98423fb64705aa1996412a49769343af6e22 [file] [log] [blame]
Oleksandr Peletskyi2f03fa22016-02-25 16:20:47 +01001# Copyright (C) 2016 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
Bartosz Fabianowski40e2de692018-01-15 18:16:09 +010019LOCAL_COMPATIBILITY_SUITE := arcts cts vts general-tests
Oleksandr Peletskyi2f03fa22016-02-25 16:20:47 +010020
21LOCAL_PACKAGE_NAME := CtsCustomizationApp
22
23LOCAL_MODULE_TAGS := optional
24
25LOCAL_MODULE_PATH := $(TARGET_OUT_DATA_APPS)
26
27LOCAL_SRC_FILES := $(call all-java-files-under, src)
28
Paul Duffin27c3c8d2017-12-05 18:36:55 +000029LOCAL_STATIC_JAVA_LIBRARIES := \
Brett Chabot01466272019-03-06 15:52:42 -080030 androidx.test.rules \
31 compatibility-device-util-axt \
Paul Duffin27c3c8d2017-12-05 18:36:55 +000032
Paul Duffinb7a13292017-12-15 07:27:19 +000033LOCAL_JAVA_LIBRARIES := android.test.base.stubs
Oleksandr Peletskyi2f03fa22016-02-25 16:20:47 +010034
35LOCAL_SDK_VERSION := current
36
Paul Duffin27c3c8d2017-12-05 18:36:55 +000037include $(BUILD_CTS_PACKAGE)