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 15cc_library { 16 name: "computepipe_input_manager", 17 srcs: [ 18 "Factory.cpp", 19 "EvsInputManager.cpp", 20 ], 21 export_include_dirs: ["include"], 22 header_libs: [ 23 "computepipe_runner_includes", 24 ], 25 static_libs: [ 26 "libcomputepipeprotos", 27 ], 28 shared_libs: [ 29 "android.hardware.automotive.evs@1.0", 30 "computepipe_runner_component", 31 "libbase", 32 "libcutils", 33 "libdl", 34 "libevssupport", 35 "libhardware", 36 "libhidlbase", 37 "liblog", 38 "libpng", 39 "libprotobuf-cpp-lite", 40 "libui", 41 "libutils", 42 "libEGL", 43 "libGLESv2", 44 ], 45 include_dirs: [ 46 "packages/services/Car/computepipe", 47 "packages/services/Car/evs/support_library", 48 ], 49} 50