• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
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
15java_binary {
16    name: "incident-helper-cmd",
17    wrapper: "incident_helper_cmd",
18    srcs: [
19        "java/**/*.java",
20    ],
21    proto: {
22        plugin: "javastream",
23    },
24}
25
26cc_defaults {
27    name: "incident_helper_defaults",
28
29    cflags: [
30        "-Wall",
31        "-Werror",
32        "-g",
33        "-O0"
34    ],
35
36    local_include_dirs: [
37        "src/",
38        "src/parsers/",
39    ],
40
41    srcs: [
42        "src/parsers/*.cpp",
43        "src/TextParserBase.cpp",
44        "src/ih_util.cpp",
45    ],
46
47    generated_headers: ["framework-cppstream-protos"],
48
49    shared_libs: [
50        "libbase",
51        "liblog",
52        "libprotoutil",
53        "libutils",
54    ],
55}
56
57cc_binary {
58    name: "incident_helper",
59    defaults: ["incident_helper_defaults"],
60    srcs: ["src/main.cpp"],
61}
62
63
64cc_test {
65    name: "incident_helper_test",
66    test_suites: ["device-tests"],
67    defaults: ["incident_helper_defaults"],
68    local_include_dirs: ["src/"],
69
70    srcs: [
71        "tests/*.cpp",
72    ],
73
74    data: [
75        "testdata/*",
76    ],
77
78    static_libs: [
79        "libgmock",
80        "libplatformprotos"
81    ],
82
83    shared_libs: [
84        "libprotobuf-cpp-full"
85    ],
86    proto: {
87        type: "full",
88    },
89}
90