blob: 5d70d47bddff71d681a167a343add789f9320978 [file] [log] [blame]
Colin Crossfc06bd02016-07-11 14:15:31 -07001//
2// Copyright (C) 2015 The Android Open Source Project
3//
4// Licensed under the Apache License, Version 2.0 (the "License");
5// you may not use this file except in compliance with the License.
6// You may obtain a copy of the License at
7//
8// http://www.apache.org/licenses/LICENSE-2.0
9//
10// Unless required by applicable law or agreed to in writing, software
11// distributed under the License is distributed on an "AS IS" BASIS,
12// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13// See the License for the specific language governing permissions and
14// limitations under the License.
15//
16
Chih-Hung Hsieh122352d2017-10-02 15:20:07 -070017cc_defaults {
Andreas Gampeaf05f3b2018-02-15 11:40:30 -080018 name: "libbase_cflags_defaults",
Elliott Hughesdc699a22018-02-16 17:58:14 -080019 cflags: [
20 "-Wall",
21 "-Werror",
22 "-Wextra",
23 ],
Chih-Hung Hsieh122352d2017-10-02 15:20:07 -070024}
Colin Crossfc06bd02016-07-11 14:15:31 -070025
Steven Moreland3c71bbd2017-04-14 00:54:46 -070026cc_library_headers {
27 name: "libbase_headers",
28 vendor_available: true,
29 host_supported: true,
30 export_include_dirs: ["include"],
31
Steven Moreland3c71bbd2017-04-14 00:54:46 -070032 target: {
33 linux_bionic: {
34 enabled: true,
35 },
36 windows: {
37 enabled: true,
38 },
39 },
40}
41
Andreas Gampeaf05f3b2018-02-15 11:40:30 -080042cc_defaults {
43 name: "libbase_defaults",
44 defaults: ["libbase_cflags_defaults"],
Colin Crossfc06bd02016-07-11 14:15:31 -070045 srcs: [
Mark Salyzyn0c071c92018-02-05 07:41:31 -080046 "chrono_utils.cpp",
Colin Crossfc06bd02016-07-11 14:15:31 -070047 "file.cpp",
48 "logging.cpp",
49 "parsenetaddress.cpp",
Josh Gao0c442562016-09-13 14:50:57 -070050 "quick_exit.cpp",
Colin Crossfc06bd02016-07-11 14:15:31 -070051 "stringprintf.cpp",
52 "strings.cpp",
53 "test_utils.cpp",
54 ],
Steven Moreland3c71bbd2017-04-14 00:54:46 -070055
Colin Crossfc06bd02016-07-11 14:15:31 -070056 shared_libs: ["liblog"],
57 target: {
58 android: {
Elliott Hughes1e88c8c2016-09-21 16:53:15 -070059 srcs: [
Elliott Hughes1e88c8c2016-09-21 16:53:15 -070060 "properties.cpp",
61 ],
Elliott Hughesec46f4e2017-02-14 15:46:33 -080062 sanitize: {
63 misc_undefined: ["integer"],
64 },
James Hawkinse78ea772017-03-24 11:43:02 -070065
Colin Crossfc06bd02016-07-11 14:15:31 -070066 },
Dan Willemsenbdddcab2017-10-03 14:17:31 -070067 linux: {
68 srcs: [
Dan Willemsenbdddcab2017-10-03 14:17:31 -070069 "errors_unix.cpp",
70 ],
71 cppflags: ["-Wexit-time-destructors"],
72 },
Colin Crossfc06bd02016-07-11 14:15:31 -070073 darwin: {
James Hawkinse78ea772017-03-24 11:43:02 -070074 srcs: [
James Hawkinse78ea772017-03-24 11:43:02 -070075 "errors_unix.cpp",
76 ],
Colin Crossfc06bd02016-07-11 14:15:31 -070077 cppflags: ["-Wexit-time-destructors"],
78 },
Dan Willemsenab34b472016-11-29 13:32:55 -080079 linux_bionic: {
Dan Willemsenab34b472016-11-29 13:32:55 -080080 enabled: true,
81 },
Colin Crossfc06bd02016-07-11 14:15:31 -070082 windows: {
83 srcs: [
84 "errors_windows.cpp",
85 "utf8.cpp",
86 ],
87 enabled: true,
88 },
89 },
90}
91
Andreas Gampeaf05f3b2018-02-15 11:40:30 -080092cc_library {
93 name: "libbase",
94 defaults: ["libbase_defaults"],
95 vendor_available: true,
96 host_supported: true,
97 vndk: {
98 enabled: true,
99 support_system_process: true,
100 },
101 header_libs: [
102 "libbase_headers",
103 ],
104 export_header_lib_headers: ["libbase_headers"],
105}
106
107cc_library_static {
108 name: "libbase_ndk",
109 defaults: ["libbase_defaults"],
110 sdk_version: "current",
111 stl: "c++_static",
112 export_include_dirs: ["include"],
113}
114
Colin Crossfc06bd02016-07-11 14:15:31 -0700115// Tests
116// ------------------------------------------------------------------------------
117cc_test {
118 name: "libbase_test",
Andreas Gampeaf05f3b2018-02-15 11:40:30 -0800119 defaults: ["libbase_cflags_defaults"],
Colin Crossfc06bd02016-07-11 14:15:31 -0700120 host_supported: true,
Colin Crossfc06bd02016-07-11 14:15:31 -0700121 srcs: [
Elliott Hughes1dbd9762017-02-24 14:02:05 -0800122 "endian_test.cpp",
Colin Crossfc06bd02016-07-11 14:15:31 -0700123 "errors_test.cpp",
124 "file_test.cpp",
125 "logging_test.cpp",
Yabin Cui997cba42016-10-05 10:54:35 -0700126 "parsedouble_test.cpp",
Colin Crossfc06bd02016-07-11 14:15:31 -0700127 "parseint_test.cpp",
128 "parsenetaddress_test.cpp",
Josh Gao0c442562016-09-13 14:50:57 -0700129 "quick_exit_test.cpp",
Tom Cherryc996a8e2017-04-05 14:15:31 -0700130 "scopeguard_test.cpp",
Colin Crossfc06bd02016-07-11 14:15:31 -0700131 "stringprintf_test.cpp",
132 "strings_test.cpp",
133 "test_main.cpp",
Josh Gao30171a82017-04-27 19:48:44 -0700134 "test_utils_test.cpp",
Colin Crossfc06bd02016-07-11 14:15:31 -0700135 ],
136 target: {
Elliott Hughes1e88c8c2016-09-21 16:53:15 -0700137 android: {
Dan Willemsenbdddcab2017-10-03 14:17:31 -0700138 srcs: ["properties_test.cpp"],
Elliott Hughesec46f4e2017-02-14 15:46:33 -0800139 sanitize: {
140 misc_undefined: ["integer"],
141 },
Elliott Hughes1e88c8c2016-09-21 16:53:15 -0700142 },
Dan Willemsenbdddcab2017-10-03 14:17:31 -0700143 linux: {
James Hawkinse78ea772017-03-24 11:43:02 -0700144 srcs: ["chrono_utils_test.cpp"],
James Hawkinse78ea772017-03-24 11:43:02 -0700145 },
Colin Crossfc06bd02016-07-11 14:15:31 -0700146 windows: {
147 srcs: ["utf8_test.cpp"],
Dan Willemsen528f1442017-11-29 18:06:11 -0800148 cflags: ["-Wno-unused-parameter"],
Colin Crossfc06bd02016-07-11 14:15:31 -0700149 enabled: true,
150 },
151 },
152 local_include_dirs: ["."],
Colin Crossfc06bd02016-07-11 14:15:31 -0700153 shared_libs: ["libbase"],
154 compile_multilib: "both",
155 multilib: {
156 lib32: {
157 suffix: "32",
158 },
159 lib64: {
160 suffix: "64",
161 },
162 },
163}