blob: c7d808bca00928f124da15e60f54cbe7d2d5061d [file] [log] [blame]
Stephen Kiazyke77dce22017-03-14 15:38:12 -07001// 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
Stephen Kiazyke77dce22017-03-14 15:38:12 -070015localIncludeFiles = [
16 "include",
17]
18
19sharedLibraries = [
20 "libbase",
21 "libcutils",
22 "liblog",
23 "libutils",
24 "libEGL",
25 "libGLESv2",
26 "libui",
27 "libgui",
28 "libhardware",
29]
30
Okan Arikan822b7102017-05-08 13:31:34 -070031staticLibraries = ["libpdx_default_transport", "libbroadcastring"]
Stephen Kiazyke77dce22017-03-14 15:38:12 -070032
33headerLibraries = [
34 "libeigen",
35]
36
37cc_library {
Stephen Kiazyke77dce22017-03-14 15:38:12 -070038 local_include_dirs: localIncludeFiles,
39
40 cflags: [
41 "-DLOG_TAG=\"libdvrcommon\"",
42 "-DTRACE=0",
Chih-Hung Hsiehe1900832017-10-05 14:27:38 -070043 "-Wall",
44 "-Werror",
Stephen Kiazyke77dce22017-03-14 15:38:12 -070045 ],
46 export_include_dirs: localIncludeFiles,
47
Stephen Kiazyke77dce22017-03-14 15:38:12 -070048 header_libs: headerLibraries,
49 export_header_lib_headers: headerLibraries,
50
51 name: "libdvrcommon",
52}
53
54testFiles = [
55 "tests/numeric_test.cpp",
56 "tests/pose_test.cpp",
57]
58
59cc_test {
60 name: "libdvrcommon_test",
61 tags: ["optional"],
62
63 srcs: testFiles,
Chih-Hung Hsiehe1900832017-10-05 14:27:38 -070064 cflags: [
65 "-Wall",
66 "-Werror",
67 "-Wno-unused-parameter",
68 ],
Stephen Kiazyke77dce22017-03-14 15:38:12 -070069
70 shared_libs: sharedLibraries,
71
72 static_libs: [
73 "libgmock_main",
74 "libgmock",
75 "libgtest",
76 "libdvrcommon",
77 ] + staticLibraries,
78}