blob: 72a391c2efa02271f2e60180d41c784fe83b0d73 [file] [log] [blame]
Yin-Chia Yeh96f4d402015-10-29 17:53:39 -07001# Copyright (C) 2015 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
Eino-Ville Talvalaeeeb84b2017-02-25 11:52:33 -080017# CtsCameraUtils package
18
19include $(CLEAR_VARS)
20
Brett Chabot01466272019-03-06 15:52:42 -080021LOCAL_STATIC_JAVA_LIBRARIES := compatibility-device-util-axt \
Eino-Ville Talvalaeeeb84b2017-02-25 11:52:33 -080022 mockito-target-minus-junit4 \
23 android-ex-camera2
24
25LOCAL_SRC_FILES := \
26 $(call all-java-files-under, utils/src) \
27 $(call all-renderscript-files-under, utils/src)
28
29LOCAL_MODULE := CtsCameraUtils
30
31LOCAL_SDK_VERSION := current
jdesprez6b119e52017-05-04 15:30:11 -070032-include cts/error_prone_rules_tests.mk
Eino-Ville Talvalaeeeb84b2017-02-25 11:52:33 -080033include $(BUILD_STATIC_JAVA_LIBRARY)
34
Yin-Chia Yeh96f4d402015-10-29 17:53:39 -070035# CtsCameraTestCases package
36
37include $(CLEAR_VARS)
38
39LOCAL_MODULE_TAGS := tests
40
Yin-Chia Yehf7211d92016-02-01 11:21:58 -080041# Include both the 32 and 64 bit versions
42LOCAL_MULTILIB := both
43
Brett Chabot01466272019-03-06 15:52:42 -080044LOCAL_STATIC_JAVA_LIBRARIES := compatibility-device-util-axt \
45 ctstestrunner-axt \
Guang Zhua21da062016-08-15 14:48:42 -070046 mockito-target-minus-junit4 \
Eino-Ville Talvalaeeeb84b2017-02-25 11:52:33 -080047 android-ex-camera2 \
Svetoslav Ganoveb765892018-01-12 22:12:55 -080048 CtsCameraUtils \
49 truth-prebuilt
Yin-Chia Yeh96f4d402015-10-29 17:53:39 -070050
Eino-Ville Talvalacfa26b52016-03-07 14:54:52 -080051LOCAL_JNI_SHARED_LIBRARIES := \
52 libctscamera2_jni \
53 libnativehelper_compat_libc++
Yin-Chia Yeh7227f362015-12-11 14:47:57 -080054
Yin-Chia Yeh31eb5932016-09-28 15:43:44 -070055LOCAL_NDK_STL_VARIANT := c++_shared
56
Eino-Ville Talvalaeeeb84b2017-02-25 11:52:33 -080057LOCAL_SRC_FILES := \
58 $(call all-java-files-under, src) \
59 $(call all-renderscript-files-under, src)
Yin-Chia Yeh96f4d402015-10-29 17:53:39 -070060
Stuart Scott2ff78ae2016-02-18 19:25:52 -080061# Tag this module as a cts test artifact
Emilian Peevd1641682018-05-22 13:31:50 +010062LOCAL_COMPATIBILITY_SUITE := cts vts general-tests cts_instant
Yin-Chia Yeh6a145172015-12-02 17:38:34 -080063
Yin-Chia Yeh96f4d402015-10-29 17:53:39 -070064LOCAL_PACKAGE_NAME := CtsCameraTestCases
65
Eino-Ville Talvala4e7cd0a2017-03-01 15:57:50 -080066LOCAL_SDK_VERSION := test_current
Yin-Chia Yeh96f4d402015-10-29 17:53:39 -070067
Jiyong Park925a7662018-01-24 15:10:49 +090068LOCAL_JAVA_LIBRARIES := android.test.runner.stubs android.test.base.stubs
Yin-Chia Yeh96f4d402015-10-29 17:53:39 -070069
70cts_runtime_hint := 120
71
72include $(BUILD_CTS_PACKAGE)
Yin-Chia Yeh7227f362015-12-11 14:47:57 -080073
74include $(call all-makefiles-under,$(LOCAL_PATH))