1e7fc8b65b0efa7015afb9c1e59069a081f192fcfSteven Moreland//
2e7fc8b65b0efa7015afb9c1e59069a081f192fcfSteven Moreland// Copyright (C) 2016 The Android Open Source Project
3e7fc8b65b0efa7015afb9c1e59069a081f192fcfSteven Moreland//
4e7fc8b65b0efa7015afb9c1e59069a081f192fcfSteven Moreland// Licensed under the Apache License, Version 2.0 (the "License");
5e7fc8b65b0efa7015afb9c1e59069a081f192fcfSteven Moreland// you may not use this file except in compliance with the License.
6e7fc8b65b0efa7015afb9c1e59069a081f192fcfSteven Moreland// You may obtain a copy of the License at
7e7fc8b65b0efa7015afb9c1e59069a081f192fcfSteven Moreland//
8e7fc8b65b0efa7015afb9c1e59069a081f192fcfSteven Moreland//      http://www.apache.org/licenses/LICENSE-2.0
9e7fc8b65b0efa7015afb9c1e59069a081f192fcfSteven Moreland//
10e7fc8b65b0efa7015afb9c1e59069a081f192fcfSteven Moreland// Unless required by applicable law or agreed to in writing, software
11e7fc8b65b0efa7015afb9c1e59069a081f192fcfSteven Moreland// distributed under the License is distributed on an "AS IS" BASIS,
12e7fc8b65b0efa7015afb9c1e59069a081f192fcfSteven Moreland// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13e7fc8b65b0efa7015afb9c1e59069a081f192fcfSteven Moreland// See the License for the specific language governing permissions and
14e7fc8b65b0efa7015afb9c1e59069a081f192fcfSteven Moreland// limitations under the License.
15e7fc8b65b0efa7015afb9c1e59069a081f192fcfSteven Moreland//
16e7fc8b65b0efa7015afb9c1e59069a081f192fcfSteven Moreland
17e7fc8b65b0efa7015afb9c1e59069a081f192fcfSteven Morelandcc_test {
18e7fc8b65b0efa7015afb9c1e59069a081f192fcfSteven Moreland    name: "VtsFwkDisplayServiceV1_0TargetTest",
19e7fc8b65b0efa7015afb9c1e59069a081f192fcfSteven Moreland    srcs: ["VtsFwkDisplayServiceV1_0TargetTest.cpp"],
20e7fc8b65b0efa7015afb9c1e59069a081f192fcfSteven Moreland    shared_libs: [
21e7fc8b65b0efa7015afb9c1e59069a081f192fcfSteven Moreland        "android.frameworks.displayservice@1.0",
22e7fc8b65b0efa7015afb9c1e59069a081f192fcfSteven Moreland        "libhidlbase",
23e7fc8b65b0efa7015afb9c1e59069a081f192fcfSteven Moreland        "libhidltransport",
24e7fc8b65b0efa7015afb9c1e59069a081f192fcfSteven Moreland        "liblog",
25e7fc8b65b0efa7015afb9c1e59069a081f192fcfSteven Moreland        "libutils",
26e7fc8b65b0efa7015afb9c1e59069a081f192fcfSteven Moreland    ],
27e7fc8b65b0efa7015afb9c1e59069a081f192fcfSteven Moreland    static_libs: ["VtsHalHidlTargetTestBase"],
28e7fc8b65b0efa7015afb9c1e59069a081f192fcfSteven Moreland    cflags: [
29e7fc8b65b0efa7015afb9c1e59069a081f192fcfSteven Moreland        "-Wall",
30e7fc8b65b0efa7015afb9c1e59069a081f192fcfSteven Moreland        "-Werror",
31e7fc8b65b0efa7015afb9c1e59069a081f192fcfSteven Moreland        "-O0",
32e7fc8b65b0efa7015afb9c1e59069a081f192fcfSteven Moreland        "-g",
33e7fc8b65b0efa7015afb9c1e59069a081f192fcfSteven Moreland    ]
34e7fc8b65b0efa7015afb9c1e59069a081f192fcfSteven Moreland}
35e7fc8b65b0efa7015afb9c1e59069a081f192fcfSteven Moreland
36