1// 2// Copyright (C) 2019 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 16// TODO add arm version 17cc_prebuilt_binary { 18 name: "crosvm", 19 srcs: ["x86_64/bin/crosvm"], 20 defaults: ["cuttlefish_host_only"], 21} 22 23cc_prebuilt_library_shared { 24 name: "libepoxy-for-crosvm", 25 srcs: ["x86_64/lib64/crosvm/libepoxy.so.0"], 26 relative_install_path: "crosvm", 27 defaults: ["cuttlefish_host_only"], 28} 29 30cc_prebuilt_library_shared { 31 name: "libgbm-for-crosvm", 32 srcs: ["x86_64/lib64/crosvm/libgbm.so.1"], 33 relative_install_path: "crosvm", 34 defaults: ["cuttlefish_host_only"], 35} 36 37cc_prebuilt_library_shared { 38 name: "libminijail-for-crosvm", 39 srcs: ["x86_64/lib64/crosvm/libminijail.so"], 40 relative_install_path: "crosvm", 41 defaults: ["cuttlefish_host_only"], 42} 43 44cc_prebuilt_library_shared { 45 name: "libvirglrenderer-for-crosvm", 46 srcs: ["x86_64/lib64/crosvm/libvirglrenderer.so.0"], 47 relative_install_path: "crosvm", 48 defaults: ["cuttlefish_host_only"], 49} 50