1// Copyright (C) 2019 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    default_team: "trendy_team_automotive",
17    default_applicable_licenses: ["Android-Apache-2.0"],
18}
19
20cc_test {
21    name: "computepipe_semantic_manager_test",
22    test_suites: ["device-tests"],
23    srcs: [
24        "SemanticManagerTest.cpp",
25    ],
26    static_libs: [
27        "computepipe_stream_manager",
28        "computepipe_runner_component",
29        "mock_stream_engine_interface",
30        "libgtest",
31        "libgmock",
32        "libcomputepipeprotos",
33    ],
34    shared_libs: [
35        "libbase",
36        "liblog",
37        "libnativewindow",
38        "libprotobuf-cpp-lite",
39    ],
40    header_libs: [
41        "computepipe_runner_includes",
42    ],
43    include_dirs: [
44        "packages/services/Car/cpp/computepipe",
45        "packages/services/Car/cpp/computepipe/runner/stream_manager",
46    ],
47}
48
49cc_test {
50    name: "computepipe_pixel_manager_test",
51    test_suites: ["device-tests"],
52    srcs: [
53        "PixelStreamManagerTest.cpp",
54    ],
55    static_libs: [
56        "computepipe_stream_manager",
57        "computepipe_runner_component",
58        "mock_stream_engine_interface",
59        "libgtest",
60        "libgmock",
61        "libcomputepipeprotos",
62    ],
63    shared_libs: [
64        "libbase",
65        "liblog",
66        "libnativewindow",
67        "libprotobuf-cpp-lite",
68    ],
69    header_libs: [
70        "computepipe_runner_includes",
71    ],
72    include_dirs: [
73        "packages/services/Car/cpp/computepipe",
74        "packages/services/Car/cpp/computepipe/runner/stream_manager",
75    ],
76}
77