1// 2// Copyright (C) 2020 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 16package { 17 default_applicable_licenses: ["Android-Apache-2.0"], 18} 19 20cc_library { 21 name: "libcuttlefish_screen_connector", 22 srcs: [ 23 "wayland_screen_connector.cpp", 24 ], 25 shared_libs: [ 26 "libbase", 27 "libcuttlefish_fs", 28 "libfruit", 29 "libjsoncpp", 30 "liblog", 31 ], 32 header_libs: [ 33 "libcuttlefish_confui_host_headers", 34 ], 35 static_libs: [ 36 "libcuttlefish_confui", 37 "libcuttlefish_confui_host", 38 "libcuttlefish_host_config", 39 "libcuttlefish_utils", 40 "libcuttlefish_wayland_server", 41 "libffi", 42 "libft2.nodep", 43 "libteeui", 44 "libteeui_localization", 45 "libwayland_crosvm_gpu_display_extension_server_protocols", 46 "libwayland_extension_server_protocols", 47 "libwayland_server", 48 ], 49 defaults: ["cuttlefish_buildhost_only"], 50} 51