13ae29d455866ce358b42617134610415c04e0d53Tsu Chiang Chuang#
23ae29d455866ce358b42617134610415c04e0d53Tsu Chiang Chuang# Copyright (C) 2011 The Android Open Source Project
33ae29d455866ce358b42617134610415c04e0d53Tsu Chiang Chuang#
43ae29d455866ce358b42617134610415c04e0d53Tsu Chiang Chuang# Licensed under the Apache License, Version 2.0 (the "License");
53ae29d455866ce358b42617134610415c04e0d53Tsu Chiang Chuang# you may not use this file except in compliance with the License.
63ae29d455866ce358b42617134610415c04e0d53Tsu Chiang Chuang# You may obtain a copy of the License at
73ae29d455866ce358b42617134610415c04e0d53Tsu Chiang Chuang#
83ae29d455866ce358b42617134610415c04e0d53Tsu Chiang Chuang#      http://www.apache.org/licenses/LICENSE-2.0
93ae29d455866ce358b42617134610415c04e0d53Tsu Chiang Chuang#
103ae29d455866ce358b42617134610415c04e0d53Tsu Chiang Chuang# Unless required by applicable law or agreed to in writing, software
113ae29d455866ce358b42617134610415c04e0d53Tsu Chiang Chuang# distributed under the License is distributed on an "AS IS" BASIS,
123ae29d455866ce358b42617134610415c04e0d53Tsu Chiang Chuang# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
133ae29d455866ce358b42617134610415c04e0d53Tsu Chiang Chuang# See the License for the specific language governing permissions and
143ae29d455866ce358b42617134610415c04e0d53Tsu Chiang Chuang# limitations under the License.
153ae29d455866ce358b42617134610415c04e0d53Tsu Chiang Chuang#
163ae29d455866ce358b42617134610415c04e0d53Tsu Chiang ChuangLOCAL_PATH := $(call my-dir)
173ae29d455866ce358b42617134610415c04e0d53Tsu Chiang Chuanginclude $(CLEAR_VARS)
183ae29d455866ce358b42617134610415c04e0d53Tsu Chiang Chuang
193ae29d455866ce358b42617134610415c04e0d53Tsu Chiang Chuang# We only want this apk build for tests.
203ae29d455866ce358b42617134610415c04e0d53Tsu Chiang ChuangLOCAL_MODULE_TAGS := tests
213ae29d455866ce358b42617134610415c04e0d53Tsu Chiang Chuang
223ae29d455866ce358b42617134610415c04e0d53Tsu Chiang ChuangLOCAL_PACKAGE_NAME := DataIdleTest
233ae29d455866ce358b42617134610415c04e0d53Tsu Chiang ChuangLOCAL_JAVA_LIBRARIES := android.test.runner
243ae29d455866ce358b42617134610415c04e0d53Tsu Chiang ChuangLOCAL_SRC_FILES := $(call all-java-files-under, src)
253ae29d455866ce358b42617134610415c04e0d53Tsu Chiang Chuang
263ae29d455866ce358b42617134610415c04e0d53Tsu Chiang Chuang# We need to sign it to get access to the network usage history.
273ae29d455866ce358b42617134610415c04e0d53Tsu Chiang ChuangLOCAL_CERTIFICATE := platform
283ae29d455866ce358b42617134610415c04e0d53Tsu Chiang Chuang
293ae29d455866ce358b42617134610415c04e0d53Tsu Chiang Chuanginclude $(BUILD_PACKAGE)
30