1 // 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 16 cc_binary_host { 17 name: "launch_cvd", 18 srcs: [ 19 "main.cc", 20 "screen_region_handler.cc", 21 "ril_config.cc", 22 "vsoc_shared_memory.cc", 23 "boot_image_unpacker.cc", 24 "process_monitor.cc", 25 "launch.cc", 26 "data_image.cc", 27 "flags.cc", 28 ], 29 header_libs: [ 30 "cuttlefish_glog", 31 ], 32 shared_libs: [ 33 "vsoc_lib", 34 "libcuttlefish_fs", 35 "libcuttlefish_strings", 36 "libcuttlefish_utils", 37 "cuttlefish_auto_resources", 38 "libbase", 39 "libnl" 40 ], 41 static_libs: [ 42 "libcuttlefish_host_config", 43 "libcuttlefish_vm_manager", 44 "libivserver", 45 "libgflags", 46 "libxml2", 47 "libjsoncpp", 48 ], 49 defaults: ["cuttlefish_host_only", "cuttlefish_libicuuc"], 50 } 51