blob: b5ec78b31a677f21dbbe30c3b5a01163090158d4 [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",
23 "simulated_hw_composer.cpp",
24 "tcp_socket.cpp",
25 "virtual_inputs.cpp",
26 "virtual_input_device.cpp",
27 "vnc_client_connection.cpp",
28 "vnc_server.cpp",
Greg Hartman86b114a2017-11-03 21:04:14 -070029 "vnc_utils.cpp",
Greg Hartmana4ff2482017-10-03 16:35:00 -070030 ],
31 header_libs: [
32 "cuttlefish_glog",
33 ],
Greg Hartmance872ef2017-12-04 22:51:47 -080034 shared_libs: [
35 "vsoc_lib",
36 "libcuttlefish_fs",
37 "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",
Greg Hartmana4ff2482017-10-03 16:35:00 -070042 "libjpeg",
Greg Hartman2e788be2017-10-30 18:14:50 -070043 "libgflags",
Greg Hartmana4ff2482017-10-03 16:35:00 -070044 ],
Greg Hartmance872ef2017-12-04 22:51:47 -080045 defaults: ["cuttlefish_host_only"],
Greg Hartmana4ff2482017-10-03 16:35:00 -070046}