blob: a9ec558e586bc9bce08eaab8c17804206ee1aab3 [file] [log] [blame]
Stuart Scott4e4502a2013-02-07 14:30:41 -08001#
2# Copyright (C) 2013 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.
Stuart Scott952b5602013-03-08 10:46:32 -080015
Stuart Scott4e4502a2013-02-07 14:30:41 -080016LOCAL_PATH:= $(call my-dir)
17include $(CLEAR_VARS)
Dan Willemsen414c0862015-09-30 18:18:09 -070018LOCAL_SRC_FILES := $(call all-subdir-cpp-files)
Stuart Scott4e4502a2013-02-07 14:30:41 -080019LOCAL_SRC_FILES += ../jni/graphics/Matrix.cpp
20
Dan Albert5ffe3d52016-03-03 12:40:42 -080021LOCAL_C_INCLUDES += $(LOCAL_PATH)/../jni/graphics/
22LOCAL_STATIC_LIBRARIES := liblog
Dan Albertfae9f3e2014-10-16 22:20:09 -070023LOCAL_LDFLAGS:= -g -lpthread
Dan Willemsen414c0862015-09-30 18:18:09 -070024LOCAL_MODULE_HOST_OS := linux
Stuart Scotta132af62013-11-07 10:30:32 -080025LOCAL_MODULE:= cts_device_opengl_test
Dan Albert5ffe3d52016-03-03 12:40:42 -080026include $(BUILD_HOST_NATIVE_TEST)