blob: fae5a17d6270dfb47ca4d9587b300d7b43d1032f [file] [log] [blame]
Greg Hartmana4ff2482017-10-03 16:35:00 -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
16cc_binary_host {
17 name: "vnc_server",
18 srcs: [
19 "blackboard.cpp",
20 "frame_buffer_watcher.cpp",
21 "jpeg_compressor.cpp",
22 "main.cpp",
Jorge E. Moreirac87c2c72019-03-06 16:12:23 -080023 "screen_connector.cpp",
Greg Hartmana4ff2482017-10-03 16:35:00 -070024 "simulated_hw_composer.cpp",
Greg Hartmana4ff2482017-10-03 16:35:00 -070025 "virtual_inputs.cpp",
Greg Hartmana4ff2482017-10-03 16:35:00 -070026 "vnc_client_connection.cpp",
27 "vnc_server.cpp",
28 ],
29 header_libs: [
30 "cuttlefish_glog",
31 ],
Greg Hartmance872ef2017-12-04 22:51:47 -080032 shared_libs: [
Cody Schuffelen134ff032019-11-22 00:25:32 -080033 "vsoc_lib",
Greg Hartmance872ef2017-12-04 22:51:47 -080034 "libcuttlefish_fs",
Jorge E. Moreira2a777f62018-06-13 17:28:10 -070035 "libcuttlefish_utils",
Ryan Haining0594a5c2018-01-25 13:03:06 -080036 "cuttlefish_tcp_socket",
Greg Hartmance872ef2017-12-04 22:51:47 -080037 "cuttlefish_auto_resources",
38 "libbase",
39 ],
Greg Hartmana4ff2482017-10-03 16:35:00 -070040 static_libs: [
Greg Hartman6da43022017-12-05 11:16:02 -080041 "libcuttlefish_host_config",
Jorge E. Moreira577383b2018-05-24 14:17:51 -070042 "libjsoncpp",
Greg Hartmana4ff2482017-10-03 16:35:00 -070043 "libjpeg",
Greg Hartman2e788be2017-10-30 18:14:50 -070044 "libgflags",
Greg Hartmana4ff2482017-10-03 16:35:00 -070045 ],
Greg Hartmance872ef2017-12-04 22:51:47 -080046 defaults: ["cuttlefish_host_only"],
Greg Hartmana4ff2482017-10-03 16:35:00 -070047}