// Copyright (C) 2019 The Android Open Source Project // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. // You may obtain a copy of the License at // // http://www.apache.org/licenses/LICENSE-2.0 // // Unless required by applicable law or agreed to in writing, software // distributed under the License is distributed on an "AS IS" BASIS, // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. // // package { default_applicable_licenses: ["Android-Apache-2.0"], } cc_defaults { name: "android.automotive.evs.manager_defaults", shared_libs: [ "android.hardware.automotive.evs@1.0", "android.hardware.automotive.evs@1.1", "libbase", "libcamera_metadata", "libcutils", "libhardware", "libhidlbase", "libpng", "libprocessgroup", "libstatslog", "libui", "libutils", ], static_libs: ["libc++fs"], cflags: [ "-DLOG_TAG=\"EvsManagerV1_1\"", "-DGL_GLEXT_PROTOTYPES", "-DEGL_EGLEXT_PROTOTYPES", "-D_LIBCPP_ENABLE_THREAD_SAFETY_ANNOTATIONS", "-Wall", "-Werror", "-Wunused", "-Wunreachable-code", "-Wthread-safety", ], export_include_dirs: [ "./", "stats/", ], product_variables: { debuggable: { cflags: [ "-DEVS_DEBUG", ] } }, } filegroup { name: "android.automotive.evs.manager_sources", srcs: [ "Enumerator.cpp", "HalCamera.cpp", "HalDisplay.cpp", "VirtualCamera.cpp", "emul/EvsEmulatedCamera.cpp", "emul/VideoCapture.cpp", "stats/CameraUsageStats.cpp", "stats/LooperWrapper.cpp", "stats/StatsCollector.cpp", ], } cc_library_static { name: "libevsmanager_static", defaults: ["android.automotive.evs.manager_defaults"], srcs: [":android.automotive.evs.manager_sources"], export_include_dirs: ["."], } cc_binary { name: "android.automotive.evs.manager@1.1", defaults: ["android.automotive.evs.manager_defaults"], srcs: [ ":android.automotive.evs.manager_sources", "service.cpp" ], init_rc: ["android.automotive.evs.manager@1.1.rc"], vintf_fragments: ["manifest_android.automotive.evs.manager@1.1.xml"], }