blob: 29238c9fbdde20d5649d4945b656420e9399809b [file] [log] [blame]
Cody Schuffelened8b70c2019-08-27 13:11:15 -07001//
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
16cc_binary_host {
17 name: "run_cvd",
18 srcs: [
Cody Schuffelen147b88e2019-09-09 16:00:11 -070019 "launch.cc",
20 "process_monitor.cc",
21 "main.cc",
Cody Schuffelen134ff032019-11-22 00:25:32 -080022 "screen_region_handler.cc",
23 "vsoc_shared_memory.cc",
Cody Schuffelened8b70c2019-08-27 13:11:15 -070024 ],
25 header_libs: [
26 "cuttlefish_glog",
27 ],
28 shared_libs: [
Cody Schuffelen134ff032019-11-22 00:25:32 -080029 "vsoc_lib",
Cody Schuffelen147b88e2019-09-09 16:00:11 -070030 "libcuttlefish_fs",
Cody Schuffelen147b88e2019-09-09 16:00:11 -070031 "libcuttlefish_utils",
32 "cuttlefish_auto_resources",
Cody Schuffelened8b70c2019-08-27 13:11:15 -070033 "libbase",
Cody Schuffelen147b88e2019-09-09 16:00:11 -070034 "libnl"
35 ],
36 static_libs: [
37 "libcuttlefish_host_config",
38 "libcuttlefish_vm_manager",
Cody Schuffelen134ff032019-11-22 00:25:32 -080039 "libivserver",
Cody Schuffelen147b88e2019-09-09 16:00:11 -070040 "libgflags",
41 "libxml2",
42 "libjsoncpp",
Cody Schuffelened8b70c2019-08-27 13:11:15 -070043 ],
44 defaults: ["cuttlefish_host_only", "cuttlefish_libicuuc"],
45}