42 lines
1.1 KiB
Makefile
Raw Normal View History

# Copyright (C) 2008 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.
LOCAL_PATH := $(call my-dir)
2009-05-05 18:34:31 -07:00
# native test
# ========================================
include $(CLEAR_VARS)
LOCAL_SRC_FILES := \
backup_helper_test.cpp
2009-05-06 18:06:21 -07:00
LOCAL_MODULE_TAGS := user
LOCAL_MODULE := backup_helper_test
LOCAL_SHARED_LIBRARIES := libutils
include $(BUILD_EXECUTABLE)
2009-05-05 18:34:31 -07:00
# java test
# ========================================
include $(CLEAR_VARS)
2009-05-06 18:06:21 -07:00
LOCAL_MODULE_TAGS := user
2009-05-05 18:34:31 -07:00
LOCAL_SRC_FILES := $(call all-subdir-java-files)
LOCAL_PACKAGE_NAME := BackupTest
include $(BUILD_PACKAGE)