15a5981bbcd4d24de74a5d8f31ebb7c22fd0e26deNick Pelly# Copyright 2011, The Android Open Source Project
22ef360deaff9f17aa72d5749ceee283cc80897afBen Dodson#
32ef360deaff9f17aa72d5749ceee283cc80897afBen Dodson# Licensed under the Apache License, Version 2.0 (the "License");
42ef360deaff9f17aa72d5749ceee283cc80897afBen Dodson# you may not use this file except in compliance with the License.
52ef360deaff9f17aa72d5749ceee283cc80897afBen Dodson# You may obtain a copy of the License at
62ef360deaff9f17aa72d5749ceee283cc80897afBen Dodson#
72ef360deaff9f17aa72d5749ceee283cc80897afBen Dodson#     http://www.apache.org/licenses/LICENSE-2.0
82ef360deaff9f17aa72d5749ceee283cc80897afBen Dodson#
92ef360deaff9f17aa72d5749ceee283cc80897afBen Dodson# Unless required by applicable law or agreed to in writing, software
102ef360deaff9f17aa72d5749ceee283cc80897afBen Dodson# distributed under the License is distributed on an "AS IS" BASIS,
112ef360deaff9f17aa72d5749ceee283cc80897afBen Dodson# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
122ef360deaff9f17aa72d5749ceee283cc80897afBen Dodson# See the License for the specific language governing permissions and
132ef360deaff9f17aa72d5749ceee283cc80897afBen Dodson# limitations under the License.
142ef360deaff9f17aa72d5749ceee283cc80897afBen Dodson
152ef360deaff9f17aa72d5749ceee283cc80897afBen DodsonLOCAL_PATH:= $(call my-dir)
162ef360deaff9f17aa72d5749ceee283cc80897afBen Dodsoninclude $(CLEAR_VARS)
172ef360deaff9f17aa72d5749ceee283cc80897afBen Dodson
182ef360deaff9f17aa72d5749ceee283cc80897afBen Dodson# We only want this apk build for tests.
192ef360deaff9f17aa72d5749ceee283cc80897afBen DodsonLOCAL_MODULE_TAGS := tests
202ef360deaff9f17aa72d5749ceee283cc80897afBen Dodson
212ef360deaff9f17aa72d5749ceee283cc80897afBen DodsonLOCAL_JAVA_LIBRARIES := android.test.runner
222ef360deaff9f17aa72d5749ceee283cc80897afBen Dodson
232ef360deaff9f17aa72d5749ceee283cc80897afBen Dodson# Include all test java files.
242ef360deaff9f17aa72d5749ceee283cc80897afBen DodsonLOCAL_SRC_FILES := $(call all-java-files-under, src)
252ef360deaff9f17aa72d5749ceee283cc80897afBen Dodson
262ef360deaff9f17aa72d5749ceee283cc80897afBen DodsonLOCAL_PACKAGE_NAME := NfcTests
272ef360deaff9f17aa72d5749ceee283cc80897afBen DodsonLOCAL_CERTIFICATE := platform
282ef360deaff9f17aa72d5749ceee283cc80897afBen Dodson
292ef360deaff9f17aa72d5749ceee283cc80897afBen DodsonLOCAL_INSTRUMENTATION_FOR := Nfc
302ef360deaff9f17aa72d5749ceee283cc80897afBen Dodson
312ef360deaff9f17aa72d5749ceee283cc80897afBen Dodsoninclude $(BUILD_PACKAGE)
32