blob: 5380a4a1bd2f9e5bdba126a62ecda36174f6e881 [file] [log] [blame]
// 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: "evs_app_support_lib",
srcs: ["evs_app_support_lib.cpp"],
shared_libs: [
"liblog",
"libui",
"android.hardware.automotive.evs@1.0",
"android.hardware.automotive.vehicle@2.0",
"libevssupport",
],
include_dirs: ["packages/services/Car/evs/support_library"],
strip: {
keep_symbols: true,
},
init_rc: ["evs_app_support_lib.rc"],
cflags: ["-DLOG_TAG=\"EvsAppSupportLib\""] + [
"-DGL_GLEXT_PROTOTYPES",
"-DEGL_EGLEXT_PROTOTYPES",
] + [
"-Wall",
"-Werror",
"-Wunused",
"-Wunreachable-code",
],
}