• 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        "libext2_blkid",
13        "libbase",
14        "liblog",
15        "libutils",
16        "libjsoncpp",
17        "libcuttlefish_fs",
18        "libcuttlefish_utils",
19    ],
20    static_libs: [
21        "libcuttlefish_host_config",
22    ],
23}
24
25prebuilt_etc_host {
26    name: "cuttlefish_example_action_config.json",
27    src: "custom_action_config.json",
28    sub_dir: "cvd_custom_action_config",
29}
30