blob: a9ee724f98b8f3a30445fc9c782e5579d6879ec3 [file] [log] [blame]
Greg Hartmanbff7e632017-09-29 11:32:08 -07001//
2// Copyright (C) 2017 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
16subdirs = [
17 "common",
Tomasz Wiszkowskieb642fc2017-11-28 12:36:31 -080018 "guest",
Greg Hartmana4ff2482017-10-03 16:35:00 -070019 "host",
Greg Hartmanbff7e632017-09-29 11:32:08 -070020]
21
22cc_library_headers {
Greg Hartmana4ff2482017-10-03 16:35:00 -070023 name: "cuttlefish_common_headers",
Isaac Chenfef21be2017-12-11 16:57:33 +080024 vendor: true,
Greg Hartmana4ff2482017-10-03 16:35:00 -070025 export_include_dirs: ["."],
26 host_supported: true,
27}
28
Ram Muthiah792e2ad2019-04-19 11:19:46 -070029cc_library_headers {
30 name: "cuttlefish_common_headers_product",
31 product_specific: true,
32 export_include_dirs: ["."],
33 host_supported: true,
34}
35
Greg Hartmana4ff2482017-10-03 16:35:00 -070036// TODO(b/67435044) Update the include paths and remove this
37cc_library_headers {
38 name: "cuttlefish_glog",
Isaac Chenfef21be2017-12-11 16:57:33 +080039 vendor: true,
Greg Hartmana4ff2482017-10-03 16:35:00 -070040 export_include_dirs: ["common/libs"],
41 host_supported: true,
Greg Hartmanbff7e632017-09-29 11:32:08 -070042}
43
Ram Muthiah792e2ad2019-04-19 11:19:46 -070044// TODO(b/67435044) Update the include paths and remove this
45cc_library_headers {
46 name: "cuttlefish_glog_product",
47 product_specific: true,
48 export_include_dirs: ["common/libs"],
49 host_supported: true,
50}
51
Greg Hartmanbff7e632017-09-29 11:32:08 -070052cc_defaults {
Greg Hartmance872ef2017-12-04 22:51:47 -080053 name: "cuttlefish_base",
Tomasz Wiszkowski55d53ff2017-12-04 15:39:57 -080054 gnu_extensions: false,
55 header_libs: [
56 "cuttlefish_common_headers",
57 "cuttlefish_kernel_headers",
58 ],
Tomasz Wiszkowski55d53ff2017-12-04 15:39:57 -080059 target: {
Ryan Haining508c8082018-03-13 11:26:19 -070060 host: {
Tomasz Wiszkowski55d53ff2017-12-04 15:39:57 -080061 host_ldlibs: ["-lrt"],
62 cflags: ["-DCUTTLEFISH_HOST"],
Ryan Haining508c8082018-03-13 11:26:19 -070063 compile_multilib: "64",
Ryan Haininged1fe922018-03-13 17:43:30 +000064 },
65 // We don't need Darwin host-side builds
66 darwin: {
67 enabled: false,
Greg Hartmana4ff2482017-10-03 16:35:00 -070068 },
Greg Hartmanbff7e632017-09-29 11:32:08 -070069 },
Cody Schuffelen88b82d52019-05-29 14:16:03 -070070 cflags: ["-Werror", "-Wall", "-D_FILE_OFFSET_BITS=64"],
Greg Hartmance872ef2017-12-04 22:51:47 -080071 vendor: true,
Greg Hartmana4ff2482017-10-03 16:35:00 -070072}
73
Greg Hartmance872ef2017-12-04 22:51:47 -080074cc_defaults {
Ram Muthiah792e2ad2019-04-19 11:19:46 -070075 name: "cuttlefish_guest_product_only",
76 product_specific: true,
77 gnu_extensions: false,
78 header_libs: [
79 "cuttlefish_common_headers_product",
80 "cuttlefish_kernel_headers_product",
Ram Muthiah792e2ad2019-04-19 11:19:46 -070081 ],
82 target: {
83 host: {
84 host_ldlibs: ["-lrt"],
85 cflags: ["-DCUTTLEFISH_HOST"],
86 compile_multilib: "64",
87 },
88 // We don't need Darwin host-side builds
89 darwin: {
90 enabled: false,
91 },
92 },
93 cflags: ["-Werror", "-Wall"],
94}
95
96cc_defaults {
Greg Hartmane9adb542018-05-09 13:12:51 -070097 name: "cuttlefish_guest_only",
98 defaults: ["cuttlefish_base"],
99}
100
101cc_defaults {
Greg Hartmance872ef2017-12-04 22:51:47 -0800102 name: "cuttlefish_host_only",
103 device_supported: false,
104 host_supported: true,
105 defaults: ["cuttlefish_base"],
106}
107
108cc_defaults {
109 name: "cuttlefish_host_and_guest",
110 host_supported: true,
111 defaults: ["cuttlefish_base"],
112}
113
114cc_library_shared {
Greg Hartmana4ff2482017-10-03 16:35:00 -0700115 name: "vsoc_lib",
116 srcs: [
117 "common/vsoc/lib/compat.cpp",
Andreas Hubercc1cd952018-01-18 12:57:33 -0800118 "common/vsoc/lib/audio_data_layout.cpp",
Greg Hartmana4ff2482017-10-03 16:35:00 -0700119 "common/vsoc/lib/e2e_test_region_layout.cpp",
Greg Hartmana4ff2482017-10-03 16:35:00 -0700120 "common/vsoc/lib/gralloc_layout.cpp",
Jorge E. Moreira7510c962017-11-28 11:14:08 -0800121 "common/vsoc/lib/input_events_layout.cpp",
122 "common/vsoc/lib/input_events_region_view.cpp",
Greg Hartmana4ff2482017-10-03 16:35:00 -0700123 "common/vsoc/lib/lock_common.cpp",
Jorge E. Moreira334f3a92018-11-12 10:22:53 -0800124 "common/vsoc/lib/managed_e2e_test_region_layout.cpp",
Greg Hartmana4ff2482017-10-03 16:35:00 -0700125 "common/vsoc/lib/region_view.cpp",
Jorge E. Moreira57919e82018-02-13 11:50:34 -0800126 "common/vsoc/lib/screen_layout.cpp",
127 "common/vsoc/lib/screen_region_view.cpp",
Ryan Hainingb1899152018-01-29 15:50:37 -0800128 "common/vsoc/lib/socket_forward_layout.cpp",
129 "common/vsoc/lib/socket_forward_region_view.cpp",
Jorge E. Moreira4f498ee2018-05-11 15:24:00 -0700130 "common/vsoc/lib/vsoc_memory.cpp",
Greg Hartmana4ff2482017-10-03 16:35:00 -0700131 ],
Greg Hartmance872ef2017-12-04 22:51:47 -0800132 header_libs: ["cuttlefish_glog"],
133 shared_libs: [
Greg Hartmana4ff2482017-10-03 16:35:00 -0700134 "libcuttlefish_fs",
Greg Hartman98d18af2017-12-05 13:12:31 -0800135 "cuttlefish_auto_resources",
Greg Hartmana4ff2482017-10-03 16:35:00 -0700136 "libbase",
Greg Hartmand072a342017-12-05 20:27:40 -0800137 "liblog",
Greg Hartmana4ff2482017-10-03 16:35:00 -0700138 ],
Tomasz Wiszkowski55d53ff2017-12-04 15:39:57 -0800139 target: {
Ryan Haining508c8082018-03-13 11:26:19 -0700140 host: {
Tomasz Wiszkowski55d53ff2017-12-04 15:39:57 -0800141 srcs: [
Greg Hartmand072a342017-12-05 20:27:40 -0800142 "host/vsoc/lib/gralloc_buffer_region_view.cpp",
Tomasz Wiszkowski55d53ff2017-12-04 15:39:57 -0800143 "host/vsoc/lib/host_lock.cpp",
144 "host/vsoc/lib/region_control.cpp",
145 "host/vsoc/lib/region_view.cpp",
146 ],
147 },
148 android: {
149 srcs: [
Greg Hartmand072a342017-12-05 20:27:40 -0800150 "guest/vsoc/lib/gralloc_region_view.cpp",
Tomasz Wiszkowski55d53ff2017-12-04 15:39:57 -0800151 "guest/vsoc/lib/guest_lock.cpp",
152 "guest/vsoc/lib/region_control.cpp",
153 "guest/vsoc/lib/region_view.cpp",
154 ],
155 },
156 },
Alistair Strachan834fbf62018-11-02 15:23:00 -0700157 defaults: ["cuttlefish_host_and_guest"],
Greg Hartmana4ff2482017-10-03 16:35:00 -0700158}
159
Greg Hartmana4ff2482017-10-03 16:35:00 -0700160cc_test_host {
161 name: "circqueue_test",
162 srcs: [
163 "common/vsoc/lib/circqueue_test.cpp",
164 ],
Greg Hartmance872ef2017-12-04 22:51:47 -0800165 shared_libs: [
Greg Hartmana4ff2482017-10-03 16:35:00 -0700166 "vsoc_lib",
167 "libbase",
168 ],
Greg Hartmance872ef2017-12-04 22:51:47 -0800169 defaults: ["cuttlefish_host_only"],
Ram Muthiah0cc37d62019-05-01 15:29:28 -0700170 test_suites: ["general-tests"],
Greg Hartmana4ff2482017-10-03 16:35:00 -0700171}
172
Jorge E. Moreira57919e82018-02-13 11:50:34 -0800173cc_binary_host {
174 name: "vsoc_screen_region_view_test",
Greg Hartman4cbb6ab2017-12-04 18:31:37 -0800175 srcs: [
Jorge E. Moreira57919e82018-02-13 11:50:34 -0800176 "common/vsoc/lib/screen_region_view_test.cpp",
177 ],
178 static_libs: [
179 "libcuttlefish_host_config",
Jorge E. Moreira577383b2018-05-24 14:17:51 -0700180 "libjsoncpp",
Jorge E. Moreira57919e82018-02-13 11:50:34 -0800181 "libgflags",
Greg Hartman4cbb6ab2017-12-04 18:31:37 -0800182 ],
183 shared_libs: [
184 "vsoc_lib",
185 "libbase",
Jorge E. Moreira2a777f62018-06-13 17:28:10 -0700186 "libcuttlefish_utils",
Greg Hartman4cbb6ab2017-12-04 18:31:37 -0800187 ],
Jorge E. Moreira57919e82018-02-13 11:50:34 -0800188 defaults: ["cuttlefish_host_only"],
Greg Hartman4cbb6ab2017-12-04 18:31:37 -0800189}
190
Greg Hartmana4ff2482017-10-03 16:35:00 -0700191cc_test_host {
192 name: "lock_test",
193 srcs: [
194 "common/vsoc/lib/lock_test.cpp",
195 ],
Greg Hartmance872ef2017-12-04 22:51:47 -0800196 shared_libs: [
Greg Hartmana4ff2482017-10-03 16:35:00 -0700197 "vsoc_lib",
Greg Hartmana4ff2482017-10-03 16:35:00 -0700198 "libcuttlefish_fs",
Greg Hartmance872ef2017-12-04 22:51:47 -0800199 "cuttlefish_auto_resources",
200 "libbase",
Greg Hartmana4ff2482017-10-03 16:35:00 -0700201 ],
Greg Hartmance872ef2017-12-04 22:51:47 -0800202 static_libs: [
203 "libgtest_host",
204 ],
205 defaults: ["cuttlefish_host_only"],
Ram Muthiah0cc37d62019-05-01 15:29:28 -0700206 test_suites: ["general-tests"],
Greg Hartmana4ff2482017-10-03 16:35:00 -0700207}
208
209cc_test_host {
210 name: "vsoc_graphics_test",
211 srcs: [
212 "common/vsoc/lib/graphics_test.cpp",
213 ],
Greg Hartmance872ef2017-12-04 22:51:47 -0800214 shared_libs: [
Greg Hartmana4ff2482017-10-03 16:35:00 -0700215 "vsoc_lib",
216 "libbase",
217 ],
Greg Hartmance872ef2017-12-04 22:51:47 -0800218 defaults: ["cuttlefish_host_only"],
Ram Muthiah0cc37d62019-05-01 15:29:28 -0700219 test_suites: ["general-tests"],
Greg Hartmana4ff2482017-10-03 16:35:00 -0700220}
221
222cc_binary_host {
223 name: "host_region_e2e_test",
224 srcs: [
225 "host/vsoc/lib/host_region_e2e_test.cpp",
226 ],
Greg Hartmance872ef2017-12-04 22:51:47 -0800227 shared_libs: [
Greg Hartmana4ff2482017-10-03 16:35:00 -0700228 "vsoc_lib",
Greg Hartmana4ff2482017-10-03 16:35:00 -0700229 "libcuttlefish_fs",
Jorge E. Moreira2a777f62018-06-13 17:28:10 -0700230 "libcuttlefish_utils",
Greg Hartmance872ef2017-12-04 22:51:47 -0800231 "cuttlefish_auto_resources",
232 "libbase",
233 ],
234 static_libs: [
Greg Hartman6da43022017-12-05 11:16:02 -0800235 "libcuttlefish_host_config",
Jorge E. Moreira577383b2018-05-24 14:17:51 -0700236 "libjsoncpp",
Greg Hartmance872ef2017-12-04 22:51:47 -0800237 "libgtest_host",
Tomasz Wiszkowskic2c4dd62017-11-30 10:19:22 -0800238 "libgflags",
Greg Hartmana4ff2482017-10-03 16:35:00 -0700239 ],
Greg Hartmance872ef2017-12-04 22:51:47 -0800240 defaults: ["cuttlefish_host_only"],
Greg Hartmanbff7e632017-09-29 11:32:08 -0700241}