blob: e8bd7176e5f7f4718a77ea08fe54d4e04a332464 [file] [log] [blame]
Keun young Park6cb78e52012-01-09 12:41:51 -08001# Copyright (C) 2012 The Android Open Source Project
2#
3# Licensed under the Apache License, Version 2.0 (the "License");
4# you may not use this file except in compliance with the License.
5# You may obtain a copy of the License at
6#
7# http://www.apache.org/licenses/LICENSE-2.0
8#
9# Unless required by applicable law or agreed to in writing, software
10# distributed under the License is distributed on an "AS IS" BASIS,
11# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
12# See the License for the specific language governing permissions and
13# limitations under the License.
14
Brian Muramatsu0adc7502012-01-20 16:28:22 -080015LOCAL_PATH:= $(call my-dir)
Keun young Park6cb78e52012-01-09 12:41:51 -080016
17include $(CLEAR_VARS)
18
19# don't include this package in any target
20LOCAL_MODULE_TAGS := optional
21# and when built explicitly put it in the data partition
22LOCAL_MODULE_PATH := $(TARGET_OUT_DATA_APPS)
Brian Carlstrom99e2e542012-06-16 23:33:00 -070023# and because it is in data, do not strip classes.dex
24LOCAL_DEX_PREOPT := false
Keun young Park6cb78e52012-01-09 12:41:51 -080025
Keun young Park6cb78e52012-01-09 12:41:51 -080026LOCAL_SRC_FILES := $(call all-java-files-under, src)
27
Brian Muramatsu0adc7502012-01-20 16:28:22 -080028LOCAL_PACKAGE_NAME := com.replica.replicaisland
Keun young Park6cb78e52012-01-09 12:41:51 -080029
Stuart Scott374426a2016-02-19 11:16:50 -080030# Tag this module as a cts test artifact
31LOCAL_COMPATIBILITY_SUITE := cts
Stuart Scott8ab8fc02015-09-29 13:07:52 -070032
Keun young Park6cb78e52012-01-09 12:41:51 -080033LOCAL_SDK_VERSION := current
34
35include $(BUILD_PACKAGE)