1// 2// Copyright (C) 2016 The Android Open Source Project 3// 4// Licensed under the Apache License, Version 2.0 (the "License"); 5// you may not use this file except in compliance with the License. 6// You may obtain a copy of the License at 7// 8// http://www.apache.org/licenses/LICENSE-2.0 9// 10// Unless required by applicable law or agreed to in writing, software 11// distributed under the License is distributed on an "AS IS" BASIS, 12// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 13// See the License for the specific language governing permissions and 14// limitations under the License. 15// 16 17cc_test { 18 name: "VtsHalLightsTestCases", 19 multilib: { 20 lib32: { 21 suffix: "32", 22 }, 23 lib64: { 24 suffix: "64", 25 }, 26 }, 27 28 shared_libs: [ 29 "libdl", 30 "libhardware", 31 ], 32 33 whole_static_libs: ["libVtsGtestMain"], 34 35 static_libs: [ 36 "libbase", 37 "libtinyxml2", 38 "liblog", 39 "libgtest", 40 ], 41 42 // Tag this module as a vts10 test artifact 43 test_suites: [ 44 "vts10", 45 ], 46 47 cflags: [ 48 "-Wall", 49 "-Wextra", 50 "-Wunused", 51 "-Werror", 52 ], 53 srcs: ["hal_lights_basic_test.cpp"], 54} 55