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 "composition_manager.cpp", 24 "ring_buffer_manager.cpp", 25 "wayland_screen_connector.cpp", 26 ], 27 shared_libs: [ 28 "libbase", 29 "libcuttlefish_fs", 30 "libfruit", 31 "libjsoncpp", 32 "liblog", 33 "libyuv", 34 ], 35 header_libs: [ 36 "libcuttlefish_confui_host_headers", 37 ], 38 static_libs: [ 39 "libcuttlefish_confui", 40 "libcuttlefish_confui_host", 41 "libcuttlefish_host_config", 42 "libcuttlefish_utils", 43 "libcuttlefish_wayland_server", 44 "libffi", 45 "libft2.nodep", 46 "libteeui", 47 "libteeui_localization", 48 "libwayland_crosvm_gpu_display_extension_server_protocols", 49 "libwayland_extension_server_protocols", 50 "libwayland_server", 51 ], 52 defaults: ["cuttlefish_buildhost_only"], 53} 54