• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1// bugreportz
2// ==========
3package {
4    // See: http://go/android-license-faq
5    // A large-scale-change added 'default_applicable_licenses' to import
6    // all of the 'license_kinds' from "frameworks_native_license"
7    // to get the below license kinds:
8    //   SPDX-license-identifier-Apache-2.0
9    default_applicable_licenses: ["frameworks_native_license"],
10}
11
12cc_binary {
13    name: "bugreportz",
14
15    srcs: [
16        "bugreportz.cpp",
17        "main.cpp",
18    ],
19
20    cflags: [
21        "-Werror",
22        "-Wall",
23    ],
24
25    shared_libs: [
26        "libbase",
27        "libcutils",
28    ],
29}
30
31// bugreportz_test
32// ===============
33cc_test {
34    name: "bugreportz_test",
35    test_suites: ["device-tests"],
36
37    cflags: [
38        "-Werror",
39        "-Wall",
40    ],
41
42    srcs: [
43        "bugreportz.cpp",
44        "bugreportz_test.cpp",
45    ],
46
47    static_libs: ["libgmock"],
48
49    shared_libs: [
50        "libbase",
51        "libutils",
52    ],
53}
54