1// Copyright (C) 2019 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 15cc_test { 16 name: "piperegistration_test", 17 test_suites: ["device-tests"], 18 srcs: [ 19 "PipeRegistrationTest.cpp", 20 "FakeRunner.cpp", 21 ], 22 static_libs: [ 23 "libgtest", 24 "libgmock", 25 ], 26 header_libs: [ 27 "computepipe_router_headers", 28 ], 29 shared_libs: [ 30 "libbinder_ndk", 31 "libbinder", 32 "libutils", 33 "android.automotive.computepipe.router@1.0-impl", 34 "android.automotive.computepipe.runner-ndk_platform", 35 "android.automotive.computepipe.registry-ndk_platform", 36 ], 37} 38 39cc_test { 40 name: "pipequery_test", 41 test_suites: ["device-tests"], 42 srcs: [ 43 "PipeQueryTest.cpp", 44 "FakeRunner.cpp", 45 ], 46 static_libs: [ 47 "libgtest", 48 "libgmock", 49 ], 50 header_libs: [ 51 "computepipe_router_headers", 52 ], 53 shared_libs: [ 54 "libbinder", 55 "libbinder_ndk", 56 "libutils", 57 "android.automotive.computepipe.router@1.0-impl", 58 "android.automotive.computepipe.runner-ndk_platform", 59 "android.automotive.computepipe.registry-ndk_platform", 60 ], 61} 62