1// 2// Copyright (C) 2019 The Android Open Source Project 3// 4// Licensed under the Apache License, Version 2.0 (the "License"); 5// you may not use this file except in compliance with the License. 6// You may obtain a copy of the License at 7// 8// http://www.apache.org/licenses/LICENSE-2.0 9// 10// Unless required by applicable law or agreed to in writing, software 11// distributed under the License is distributed on an "AS IS" BASIS, 12// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 13// See the License for the specific language governing permissions and 14// limitations under the License. 15// 16 17package { 18 default_applicable_licenses: ["Android-Apache-2.0"], 19} 20 21cc_test { 22 name: "VtsHalCameraServiceV2_0TargetTest", 23 defaults: ["VtsHalTargetTestDefaults"], 24 25 vendor: true, 26 srcs: ["VtsHalCameraServiceV2_0TargetTest.cpp"], 27 static_libs: [ 28 "android.hardware.camera.common@1.0-helper", 29 "android.frameworks.cameraservice.device@2.0", 30 "android.frameworks.cameraservice.device@2.1", 31 "android.frameworks.cameraservice.service@2.0", 32 "android.frameworks.cameraservice.service@2.1", 33 "android.frameworks.cameraservice.service@2.2", 34 "android.frameworks.cameraservice.common@2.0", 35 "libfmq", 36 "libarect", 37 ], 38 shared_libs: [ 39 "libcamera_metadata", 40 "libmediandk", 41 "libnativewindow", 42 "liblog", 43 ], 44 45 test_suites: ["vts"], 46} 47 48cc_test { 49 name: "VtsAidlCameraServiceTargetTest", 50 defaults: [ 51 "VtsHalTargetTestDefaults", 52 ], 53 54 vendor: true, 55 srcs: ["VtsAidlCameraServiceTargetTest.cpp"], 56 static_libs: [ 57 "android.hardware.common-V2-ndk", 58 "android.hardware.common.fmq-V1-ndk", 59 "android.hardware.camera.common-helper", 60 "android.frameworks.cameraservice.common-V1-ndk", 61 "android.frameworks.cameraservice.device-V1-ndk", 62 "android.frameworks.cameraservice.service-V1-ndk", 63 "libaidlcommonsupport", 64 "libfmq", 65 "libarect", 66 ], 67 shared_libs: [ 68 "libbinder_ndk", 69 "libcamera_metadata", 70 "libmediandk", 71 "libnativewindow", 72 "liblog", 73 ], 74 75 test_suites: ["vts"], 76} 77