File: Android.bp

package info (click to toggle)
qrtr 1.2-1
  • links: PTS, VCS
  • area: main
  • in suites: sid
  • size: 300 kB
  • sloc: ansic: 2,623; sh: 84; python: 78; makefile: 6
file content (52 lines) | stat: -rw-r--r-- 947 bytes parent folder | download | duplicates (3)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
cc_library {
    name: "libqrtr",
    vendor: true,
    srcs: [
        "lib/logging.c",
        "lib/qrtr.c",
        "lib/qmi.c",
    ],
    cflags: ["-fPIC", "-Wno-error"],
    export_include_dirs: ["lib"],
    local_include_dirs: ["src"],
}

cc_binary {
    name: "qrtr-ns",
    vendor: true,
    srcs: [
        "lib/logging.c",
        "src/addr.c",
        "src/ns.c",
        "src/map.c",
        "src/hash.c",
        "src/waiter.c",
        "src/util.c",
    ],
    cflags: ["-Wno-error"],
    local_include_dirs: ["lib"],
}

cc_binary {
    name: "qrtr-cfg",
    vendor: true,
    srcs: [
        "lib/logging.c",
        "src/addr.c",
        "src/cfg.c",
    ],
    cflags: ["-Wno-error"],
    local_include_dirs: ["lib"],
}

cc_binary {
    name: "qrtr-lookup",
    vendor: true,
    srcs: [
        "lib/logging.c",
        "src/lookup.c",
        "src/util.c",
    ],
    cflags: ["-Wno-error"],
    local_include_dirs: ["lib"],
}