1cc_defaults {
2    name: "vsomeip_hello_world_defaults",
3    vendor: true,
4
5    cppflags: [
6        "-std=c++11",
7        "-Wno-unused-parameter",
8    ],
9
10    shared_libs: [
11        "libvsomeip3",
12        "libvsomeip3-cfg",
13        "libvsomeip3-e2e",
14        "libvsomeip3-sd",
15        "liblog",
16    ],
17}
18
19cc_binary {
20    name: "vsomeip_hello_world_service",
21    defaults: ["vsomeip_hello_world_defaults"],
22
23    srcs: [
24        "hello_world_service_main.cpp",
25    ],
26}
27
28cc_binary {
29    name: "vsomeip_hello_world_client",
30    defaults: ["vsomeip_hello_world_defaults"],
31
32    srcs: [
33        "hello_world_client_main.cpp",
34    ],
35}
36
37prebuilt_etc {
38    name: "helloworld-local.json",
39    vendor: true,
40    sub_dir: "vsomeip",
41    src: "helloworld-local.json",
42}
43