# Copyright (C) 2010 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. # Makefile to build device-based native tests for a test static library. # TODO: build of this sample is disabled since it dependent on the platform # long-term need to build this against prebuilt NDK # # GTest does not build on the simulator because it depends on STLport. ifneq ($(TARGET_SIMULATOR),true) LOCAL_PATH := $(call my-dir) include $(CLEAR_VARS) # All source files will be bundled into one test module LOCAL_SRC_FILES := \ TradeFedNativeTestSample_test.cpp \ TradeFedNativeTestSample2_test.cpp # Library to be tested LOCAL_STATIC_LIBRARIES := \ tfnativetestsamplelib LOCAL_C_INCLUDES := \ $(LOCAL_PATH)/../include # All gtests in all files should be compiled into one binary # The standard naming should conform to: tests LOCAL_MODULE := tfnativetestsamplelibtests # Standard location for native device tests; automatically defaults # to $(TARGET_OUT_DATA_NATIVE_TESTS)/$(LOCAL_MODULE) - only define this if you # want to override the default location to use a different subdirectory, such as: # LOCAL_MODULE_PATH := $(TARGET_OUT_DATA_NATIVE_TESTS)/special_tfnativetestsamplelib include $(BUILD_NATIVE_TEST) endif