1// Copyright (C) 2025 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 15package { 16 // See: http://go/android-license-faq 17 default_applicable_licenses: [ 18 "Android-Apache-2.0", 19 ], 20} 21 22android_test_helper_app { 23 name: "VtsAngleTestApp", 24 min_sdk_version: "35", 25 sdk_version: "35", 26 target_sdk_version: "35", 27 srcs: [ 28 "src/**/*.java", 29 ], 30 jni_uses_platform_apis: true, 31 compile_multilib: "both", 32 jni_libs: [ 33 "libvtsanglelocationtest_jni", 34 ], 35 static_libs: [ 36 "androidx.test.rules", 37 ], 38} 39 40cc_test_library { 41 name: "libvtsanglelocationtest_jni", 42 min_sdk_version: "29", 43 header_libs: [ 44 "jni_headers", 45 ], 46 static_libs: [ 47 "libbase_ndk", 48 ], 49 shared_libs: [ 50 "libdl", 51 "liblog", 52 ], 53 compile_multilib: "both", 54 stl: "libc++_static", 55 srcs: [ 56 "jni/com_google_android_vts_angle_testAngleLocation.cpp", 57 "jni/onload.cpp", 58 ], 59} 60