1// Copyright (C) 2020 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 default_applicable_licenses: ["Android-Apache-2.0"], 17} 18 19cc_test { 20 name: "clientinterface_test", 21 test_suites: ["device-tests"], 22 srcs: [ 23 "ClientInterfaceTest.cc", 24 "PipeOptionsConverterTest.cpp", 25 ], 26 static_libs: [ 27 "libgtest", 28 "libgmock", 29 "libcomputepipeprotos", 30 ], 31 header_libs: [ 32 "computepipe_router_headers", 33 "computepipe_runner_includes", 34 ], 35 include_dirs: ["packages/services/Car/cpp/computepipe"], 36 shared_libs: [ 37 "libbinder_ndk", 38 "libutils", 39 "libnativewindow", 40 "computepipe_client_interface", 41 "computepipe_runner_component", 42 "android.automotive.computepipe.registry-V2-ndk_platform", 43 "android.automotive.computepipe.runner-V2-ndk_platform", 44 "libprotobuf-cpp-lite", 45 ], 46} 47