1// 2// Copyright (C) 2018 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 17cc_test { 18 sdk_version: "26", 19 name: "GameCoreNativeTestCases", 20 srcs: [ 21 "main.cpp", 22 "cpu_test.cpp", 23 "mprotect_test.cpp", 24 "glExtensions_test.cpp" 25 ], 26 stl: "libc++_static", 27 shared_libs: [ 28 "liblog", 29 "libvulkan", 30 "libEGL", 31 "libGLESv2", 32 ], 33 static_libs: [ 34 "cpufeatures", 35 "libgmock_ndk", 36 ], 37 multilib: { 38 lib32: { 39 suffix: "32", 40 }, 41 lib64: { 42 suffix: "64", 43 }, 44 }, 45 test_suites: [ 46 "device-tests", 47 ], 48} 49 50