1 // Copyright (C) 2016 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 15 localIncludeFiles = [ 16 "include", 17 ] 18 19 sharedLibraries = [ 20 "libbase", 21 "libcutils", 22 "liblog", 23 "libutils", 24 "libEGL", 25 "libGLESv2", 26 "libui", 27 "libgui", 28 "libhardware", 29 ] 30 31 staticLibraries = ["libpdx_default_transport"] 32 33 headerLibraries = [ 34 "libeigen", 35 ] 36 37 cc_library { 38 local_include_dirs: localIncludeFiles, 39 40 cflags: [ 41 "-DLOG_TAG=\"libdvrcommon\"", 42 "-DTRACE=0", 43 ], 44 export_include_dirs: localIncludeFiles, 45 46 header_libs: headerLibraries, 47 export_header_lib_headers: headerLibraries, 48 49 name: "libdvrcommon", 50 } 51 52 testFiles = [ 53 "tests/numeric_test.cpp", 54 "tests/pose_test.cpp", 55 ] 56 57 cc_test { 58 name: "libdvrcommon_test", 59 tags: ["optional"], 60 61 srcs: testFiles, 62 63 shared_libs: sharedLibraries, 64 65 static_libs: [ 66 "libgmock_main", 67 "libgmock", 68 "libgtest", 69 "libdvrcommon", 70 ] + staticLibraries, 71 } 72