| // 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. |
| // |
| // |
| |
| |
| //################################# |
| cc_binary { |
| name: "android.hardware.automotive.evs@1.1-sample", |
| |
| srcs: [ |
| "service.cpp", |
| "EvsEnumerator.cpp", |
| "EvsV4lCamera.cpp", |
| "EvsGlDisplay.cpp", |
| "GlWrapper.cpp", |
| "VideoCapture.cpp", |
| "bufferCopy.cpp", |
| "ConfigManager.cpp", |
| "ConfigManagerUtil.cpp", |
| ], |
| |
| shared_libs: [ |
| "android.hardware.automotive.evs@1.0", |
| "android.hardware.automotive.evs@1.1", |
| "android.hardware.camera.device@3.2", |
| "libui", |
| "libgui", |
| "libEGL", |
| "libGLESv2", |
| "libbase", |
| "libbinder", |
| "libcutils", |
| "libhardware", |
| "libhidlbase", |
| "liblog", |
| "libutils", |
| "libhardware_legacy", |
| "libcamera_metadata", |
| "libtinyxml2", |
| ], |
| |
| init_rc: ["android.hardware.automotive.evs@1.1-sample.rc"], |
| |
| strip: { |
| keep_symbols: true, |
| }, |
| |
| cflags: ["-DLOG_TAG=\"EvsSampleDriver\""] + [ |
| "-DGL_GLEXT_PROTOTYPES", |
| "-DEGL_EGLEXT_PROTOTYPES", |
| ] + [ |
| "-Wall", |
| "-Werror", |
| "-Wunused", |
| "-Wunreachable-code", |
| ], |
| |
| required: [ |
| "evs_configuration.dtd", |
| "evs_sample_configuration.xml", |
| ], |
| } |
| |
| prebuilt_etc { |
| name: "evs_configuration.dtd", |
| |
| src: "resources/evs_configuration.dtd", |
| sub_dir: "automotive/evs", |
| } |
| |
| prebuilt_etc { |
| name: "evs_sample_configuration.xml", |
| |
| src: "resources/evs_sample_configuration.xml", |
| sub_dir: "automotive/evs", |
| } |