blob: 73ca0671806ba8979ada84602832054e978a4858 [file] [log] [blame]
Jorge E. Moreirafab500d2019-04-19 14:06:43 -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
16
17cc_binary {
18 name: "vsoc_input_service",
19 srcs: [
20 "main.cpp",
21 "virtual_device_base.cpp",
22 "virtual_power_button.cpp",
23 "virtual_keyboard.cpp",
24 "virtual_touchscreen.cpp",
25 "vsoc_input_service.cpp",
26 ],
Cody Schuffelen038d4d92019-11-04 15:09:03 -080027 static_libs: [
28 "libgflags",
29 ],
Jorge E. Moreirafab500d2019-04-19 14:06:43 -070030 shared_libs: [
31 "cuttlefish_auto_resources",
Cody Schuffelen038d4d92019-11-04 15:09:03 -080032 "libcuttlefish_device_config",
Jorge E. Moreirafab500d2019-04-19 14:06:43 -070033 "libcuttlefish_fs",
34 "libbase",
35 "liblog",
Cody Schuffelen134ff032019-11-22 00:25:32 -080036 "vsoc_lib",
Jorge E. Moreirafab500d2019-04-19 14:06:43 -070037 ],
Cody Schuffelen038d4d92019-11-04 15:09:03 -080038 header_libs: [
39 "cuttlefish_glog",
40 ],
Jorge E. Moreirafab500d2019-04-19 14:06:43 -070041 defaults: ["cuttlefish_guest_only"]
42}