Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit e62b7c24 authored by Peiyong Lin's avatar Peiyong Lin
Browse files

Remove unmaintained tests.

Tests under hwc2/ are not run and unmaintained for a long time, remove
them all.

Bug: b/77585359
Test: N/A
Change-Id: If4e0a8390671e573361fda477a77e332f49ef245
parent 05ca61c1
Loading
Loading
Loading
Loading
+0 −53
Original line number Diff line number Diff line
// Copyright (C) 2018 The Android Open Source Project
//
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
// You may obtain a copy of the License at
//
//      http://www.apache.org/licenses/LICENSE-2.0
//
// Unless required by applicable law or agreed to in writing, software
// distributed under the License is distributed on an "AS IS" BASIS,
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
// See the License for the specific language governing permissions and
// limitations under the License.

cc_test {
    name: "test-hwc2",
    defaults: ["surfaceflinger_defaults"],
    cflags: [
        "-DEGL_EGLEXT_PROTOTYPES",
        "-DGL_GLEXT_PROTOTYPES",
        "-fno-builtin",
        "-fstack-protector-all",
        "-g",
        "-Wextra",
    ],
    srcs: [
        "Hwc2Test.cpp",
        "Hwc2TestProperties.cpp",
        "Hwc2TestLayer.cpp",
        "Hwc2TestLayers.cpp",
        "Hwc2TestBuffer.cpp",
        "Hwc2TestClientTarget.cpp",
        "Hwc2TestVirtualDisplay.cpp",
        "Hwc2TestPixelComparator.cpp",
    ],
    static_libs: [
        "libbase",
        "libmath",
    ],
    shared_libs: [
        "android.hardware.graphics.common@1.1",
        "libcutils",
        "libEGL",
        "libGLESv2",
        "libgui",
        "libhardware",
        "libjnigraphics",
        "liblog",
        "libsync",
        "libui",
        "libutils",
    ],
}
Loading