• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1package {
2    default_applicable_licenses: ["Android-Apache-2.0"],
3}
4
5cc_binary_host {
6    name: "cuttlefish_example_action_server",
7    srcs: ["main.cpp"],
8    defaults: [
9        "cuttlefish_buildhost_only",
10    ],
11    shared_libs: [
12        "libbase",
13        "liblog",
14        "libutils",
15        "libjsoncpp",
16        "libcuttlefish_fs",
17        "libcuttlefish_utils",
18    ],
19    static_libs: [
20        "libcuttlefish_host_config",
21    ],
22}
23
24prebuilt_etc_host {
25    name: "cuttlefish_example_action_config.json",
26    src: "custom_action_config.json",
27    sub_dir: "cvd_custom_action_config",
28}
29