1// Copyright (C) 2017 The Android Open Source Project
2//
3// Licensed under the Apache License, Version 2.0 (the "License");
4// you may not use this file except in compliance with the License.
5// You may obtain a copy of the License at
6//
7//      http://www.apache.org/licenses/LICENSE-2.0
8//
9// Unless required by applicable law or agreed to in writing, software
10// distributed under the License is distributed on an "AS IS" BASIS,
11// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
12// See the License for the specific language governing permissions and
13// limitations under the License.
14
15package {
16    // See: http://go/android-license-faq
17    // A large-scale-change added 'default_applicable_licenses' to import
18    // all of the 'license_kinds' from "frameworks_base_license"
19    // to get the below license kinds:
20    //   SPDX-license-identifier-Apache-2.0
21    default_applicable_licenses: ["frameworks_base_license"],
22}
23
24java_binary {
25    name: "incident-helper-cmd",
26    wrapper: "incident_helper_cmd",
27    srcs: [
28        "java/**/*.java",
29    ],
30    proto: {
31        plugin: "javastream",
32    },
33}
34
35cc_defaults {
36    name: "incident_helper_defaults",
37
38    cflags: [
39        "-Wall",
40        "-Werror",
41        "-g",
42        "-O0"
43    ],
44
45    local_include_dirs: [
46        "src/",
47        "src/parsers/",
48    ],
49
50    srcs: [
51        "src/parsers/*.cpp",
52        "src/TextParserBase.cpp",
53        "src/ih_util.cpp",
54    ],
55
56    generated_headers: ["framework-cppstream-protos"],
57
58    shared_libs: [
59        "libbase",
60        "liblog",
61        "libprotoutil",
62        "libutils",
63    ],
64}
65
66cc_binary {
67    name: "incident_helper",
68    defaults: ["incident_helper_defaults"],
69    srcs: ["src/main.cpp"],
70}
71
72
73cc_test {
74    name: "incident_helper_test",
75    test_suites: ["device-tests"],
76    defaults: ["incident_helper_defaults"],
77    local_include_dirs: ["src/"],
78
79    srcs: [
80        "tests/*.cpp",
81    ],
82
83    data: [
84        "testdata/*",
85    ],
86
87    static_libs: [
88        "libgmock",
89        "libplatformprotos"
90    ],
91
92    shared_libs: [
93        "libprotobuf-cpp-full"
94    ],
95    proto: {
96        type: "full",
97    },
98}
99