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

Commit 01dde755 authored by TreeHugger Robot's avatar TreeHugger Robot Committed by Automerger Merge Worker
Browse files

Merge "Remove unmaintained tests." into rvc-dev am: f0dedb4f am: 85a20820 am: 2c7a310a

Change-Id: If99f82b86d017856e16fa4391a27ea4b75007b9a
parents 34370e36 2c7a310a
Loading
Loading
Loading
Loading
+0 −55
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: [
        "libadf",
        "libadfhwc",
        "libbase",
        "libmath",
    ],
    shared_libs: [
        "android.hardware.graphics.common@1.1",
        "libcutils",
        "libEGL",
        "libGLESv2",
        "libgui",
        "libhardware",
        "libhwui",
        "liblog",
        "libsync",
        "libui",
        "libutils",
    ],
}
Loading