Ruben Brunk | d1176ef | 2014-02-21 10:51:38 -0800 | [diff] [blame] | 1 | # Copyright 2013 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 | |
Igor Murashkin | 1d88023 | 2013-02-20 16:50:13 -0800 | [diff] [blame] | 15 | LOCAL_PATH:= $(call my-dir) |
| 16 | include $(CLEAR_VARS) |
Dan Albert | 0cb2c99 | 2014-09-08 19:06:54 -0700 | [diff] [blame] | 17 | LOCAL_ADDITIONAL_DEPENDENCIES := $(LOCAL_PATH)/Android.mk |
Igor Murashkin | 1d88023 | 2013-02-20 16:50:13 -0800 | [diff] [blame] | 18 | |
| 19 | LOCAL_SRC_FILES:= \ |
Ruben Brunk | 3450ba7 | 2015-06-16 11:00:37 -0700 | [diff] [blame] | 20 | VendorTagDescriptorTests.cpp \ |
Emilian Peev | b12fb5d | 2017-01-26 13:04:06 -0800 | [diff] [blame^] | 21 | CameraBinderTests.cpp \ |
| 22 | CameraZSLTests.cpp |
Igor Murashkin | 1d88023 | 2013-02-20 16:50:13 -0800 | [diff] [blame] | 23 | |
| 24 | LOCAL_SHARED_LIBRARIES := \ |
Dimitry Ivanov | cdf1573 | 2016-02-12 16:41:00 -0800 | [diff] [blame] | 25 | liblog \ |
Igor Murashkin | 1d88023 | 2013-02-20 16:50:13 -0800 | [diff] [blame] | 26 | libutils \ |
| 27 | libcutils \ |
Igor Murashkin | 1d88023 | 2013-02-20 16:50:13 -0800 | [diff] [blame] | 28 | libcamera_metadata \ |
| 29 | libcamera_client \ |
| 30 | libgui \ |
| 31 | libsync \ |
| 32 | libui \ |
Igor Murashkin | 5376573 | 2013-02-20 17:41:57 -0800 | [diff] [blame] | 33 | libdl \ |
| 34 | libbinder |
Igor Murashkin | 1d88023 | 2013-02-20 16:50:13 -0800 | [diff] [blame] | 35 | |
Igor Murashkin | 1d88023 | 2013-02-20 16:50:13 -0800 | [diff] [blame] | 36 | LOCAL_C_INCLUDES += \ |
Ruben Brunk | d1176ef | 2014-02-21 10:51:38 -0800 | [diff] [blame] | 37 | system/media/private/camera/include \ |
| 38 | system/media/camera/tests \ |
Igor Murashkin | 1d88023 | 2013-02-20 16:50:13 -0800 | [diff] [blame] | 39 | frameworks/av/services/camera/libcameraservice \ |
Igor Murashkin | 1d88023 | 2013-02-20 16:50:13 -0800 | [diff] [blame] | 40 | |
Eino-Ville Talvala | 02bf032 | 2016-02-18 12:41:10 -0800 | [diff] [blame] | 41 | LOCAL_CFLAGS += -Wall -Wextra -Werror |
Igor Murashkin | 1d88023 | 2013-02-20 16:50:13 -0800 | [diff] [blame] | 42 | |
| 43 | LOCAL_MODULE:= camera_client_test |
| 44 | LOCAL_MODULE_TAGS := tests |
| 45 | |
Yu Shan Emily Lau | 41f37e7 | 2013-04-12 14:52:52 -0700 | [diff] [blame] | 46 | include $(BUILD_NATIVE_TEST) |