blob: c338f083906b0dc1f0ad5cf139bfcdb6756e8453 [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 Schuffelene46ae522019-12-05 12:55:45 -080019 "kernel_args.cc",
Cody Schuffelen147b88e2019-09-09 16:00:11 -070020 "launch.cc",
Cody Schuffelen147b88e2019-09-09 16:00:11 -070021 "main.cc",
Cody Schuffelene46ae522019-12-05 12:55:45 -080022 "process_monitor.cc",
Cody Schuffelened8b70c2019-08-27 13:11:15 -070023 ],
24 header_libs: [
25 "cuttlefish_glog",
26 ],
27 shared_libs: [
Cody Schuffelen147b88e2019-09-09 16:00:11 -070028 "libcuttlefish_fs",
Cody Schuffelen147b88e2019-09-09 16:00:11 -070029 "libcuttlefish_utils",
Cody Schuffelened8b70c2019-08-27 13:11:15 -070030 "libbase",
Cody Schuffelen147b88e2019-09-09 16:00:11 -070031 "libnl"
32 ],
33 static_libs: [
34 "libcuttlefish_host_config",
35 "libcuttlefish_vm_manager",
Cody Schuffelen147b88e2019-09-09 16:00:11 -070036 "libgflags",
37 "libxml2",
38 "libjsoncpp",
Cody Schuffelened8b70c2019-08-27 13:11:15 -070039 ],
40 defaults: ["cuttlefish_host_only", "cuttlefish_libicuuc"],
41}