Blame android/jni/tests.mk

Packit Service b0a153
# Android build config for libusb tests
Packit Service b0a153
# Copyright © 2012-2013 RealVNC Ltd. <toby.gray@realvnc.com>
Packit Service b0a153
#
Packit Service b0a153
# This library is free software; you can redistribute it and/or
Packit Service b0a153
# modify it under the terms of the GNU Lesser General Public
Packit Service b0a153
# License as published by the Free Software Foundation; either
Packit Service b0a153
# version 2.1 of the License, or (at your option) any later version.
Packit Service b0a153
#
Packit Service b0a153
# This library is distributed in the hope that it will be useful,
Packit Service b0a153
# but WITHOUT ANY WARRANTY; without even the implied warranty of
Packit Service b0a153
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
Packit Service b0a153
# Lesser General Public License for more details.
Packit Service b0a153
#
Packit Service b0a153
# You should have received a copy of the GNU Lesser General Public
Packit Service b0a153
# License along with this library; if not, write to the Free Software
Packit Service b0a153
# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
Packit Service b0a153
#
Packit Service b0a153
Packit Service b0a153
LOCAL_PATH:= $(call my-dir)
Packit Service b0a153
LIBUSB_ROOT_REL:= ../..
Packit Service b0a153
LIBUSB_ROOT_ABS:= $(LOCAL_PATH)/../..
Packit Service b0a153
Packit Service b0a153
# testlib
Packit Service b0a153
Packit Service b0a153
include $(CLEAR_VARS)
Packit Service b0a153
Packit Service b0a153
LOCAL_SRC_FILES := \
Packit Service b0a153
  $(LIBUSB_ROOT_REL)/tests/testlib.c
Packit Service b0a153
Packit Service b0a153
LOCAL_C_INCLUDES += \
Packit Service b0a153
  $(LIBUSB_ROOT_ABS)/tests
Packit Service b0a153
Packit Service b0a153
LOCAL_EXPORT_C_INCLUDES := \
Packit Service b0a153
  $(LIBUSB_ROOT_ABS)/tests
Packit Service b0a153
Packit Service b0a153
LOCAL_MODULE := testlib
Packit Service b0a153
Packit Service b0a153
include $(BUILD_STATIC_LIBRARY)
Packit Service b0a153
Packit Service b0a153
Packit Service b0a153
# stress
Packit Service b0a153
Packit Service b0a153
include $(CLEAR_VARS)
Packit Service b0a153
Packit Service b0a153
LOCAL_SRC_FILES := \
Packit Service b0a153
  $(LIBUSB_ROOT_REL)/tests/stress.c
Packit Service b0a153
Packit Service b0a153
LOCAL_C_INCLUDES += \
Packit Service b0a153
  $(LIBUSB_ROOT_ABS)
Packit Service b0a153
Packit Service b0a153
LOCAL_SHARED_LIBRARIES += libusb1.0
Packit Service b0a153
LOCAL_STATIC_LIBRARIES += testlib
Packit Service b0a153
Packit Service b0a153
LOCAL_MODULE:= stress
Packit Service b0a153
Packit Service b0a153
include $(BUILD_EXECUTABLE)