1e70f61b1160e953e5e4d18d30a463fa9ba821779Brett Chabot# Copyright 2010, The Android Open Source Project
2e70f61b1160e953e5e4d18d30a463fa9ba821779Brett Chabot#
3e70f61b1160e953e5e4d18d30a463fa9ba821779Brett Chabot# Licensed under the Apache License, Version 2.0 (the "License");
4e70f61b1160e953e5e4d18d30a463fa9ba821779Brett Chabot# you may not use this file except in compliance with the License.
5e70f61b1160e953e5e4d18d30a463fa9ba821779Brett Chabot# You may obtain a copy of the License at
6e70f61b1160e953e5e4d18d30a463fa9ba821779Brett Chabot#
7e70f61b1160e953e5e4d18d30a463fa9ba821779Brett Chabot#     http://www.apache.org/licenses/LICENSE-2.0
8e70f61b1160e953e5e4d18d30a463fa9ba821779Brett Chabot#
9e70f61b1160e953e5e4d18d30a463fa9ba821779Brett Chabot# Unless required by applicable law or agreed to in writing, software
10e70f61b1160e953e5e4d18d30a463fa9ba821779Brett Chabot# distributed under the License is distributed on an "AS IS" BASIS,
11e70f61b1160e953e5e4d18d30a463fa9ba821779Brett Chabot# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
12e70f61b1160e953e5e4d18d30a463fa9ba821779Brett Chabot# See the License for the specific language governing permissions and
13e70f61b1160e953e5e4d18d30a463fa9ba821779Brett Chabot# limitations under the License.
14e70f61b1160e953e5e4d18d30a463fa9ba821779Brett Chabot
15e70f61b1160e953e5e4d18d30a463fa9ba821779Brett ChabotLOCAL_PATH:= $(call my-dir)
16e70f61b1160e953e5e4d18d30a463fa9ba821779Brett Chabotinclude $(CLEAR_VARS)
17e70f61b1160e953e5e4d18d30a463fa9ba821779Brett Chabot
18e70f61b1160e953e5e4d18d30a463fa9ba821779Brett Chabot# We only want this apk build for tests.
19e70f61b1160e953e5e4d18d30a463fa9ba821779Brett ChabotLOCAL_MODULE_TAGS := tests
20e70f61b1160e953e5e4d18d30a463fa9ba821779Brett Chabot
21e70f61b1160e953e5e4d18d30a463fa9ba821779Brett ChabotLOCAL_JAVA_LIBRARIES := android.test.runner
22e70f61b1160e953e5e4d18d30a463fa9ba821779Brett Chabot
23e70f61b1160e953e5e4d18d30a463fa9ba821779Brett Chabot# Include all test java files.
24e70f61b1160e953e5e4d18d30a463fa9ba821779Brett ChabotLOCAL_SRC_FILES := $(call all-java-files-under, src)
25e70f61b1160e953e5e4d18d30a463fa9ba821779Brett Chabot
26e70f61b1160e953e5e4d18d30a463fa9ba821779Brett ChabotLOCAL_PACKAGE_NAME := FrameworkTestRunnerTests
27e70f61b1160e953e5e4d18d30a463fa9ba821779Brett Chabot
28e70f61b1160e953e5e4d18d30a463fa9ba821779Brett Chabotinclude $(BUILD_PACKAGE)
29e70f61b1160e953e5e4d18d30a463fa9ba821779Brett Chabot
30