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