blob: 980d0e228548d9de1856f8486fe140d6764e9abf [file] [log] [blame]
The Android Open Source Project31dd5032009-03-03 19:32:27 -08001#
2# Copyright (C) 2008 The Android Open Source Project
3#
4# Licensed under the Apache License, Version 2.0 (the "License");
5# you may not use this file except in compliance with the License.
6# You may obtain a copy of the License at
7#
8# http://www.apache.org/licenses/LICENSE-2.0
9#
10# Unless required by applicable law or agreed to in writing, software
11# distributed under the License is distributed on an "AS IS" BASIS,
12# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13# See the License for the specific language governing permissions and
14# limitations under the License.
15#
16
Shih-wei Liao163feae2010-07-20 01:22:10 -070017ifneq ($(TARGET_SIMULATOR),true)
18
The Android Open Source Project31dd5032009-03-03 19:32:27 -080019LOCAL_PATH := $(call my-dir)
20include $(CLEAR_VARS)
21
Jean-Baptiste Queru2583ac52010-01-05 11:09:52 -080022LOCAL_MODULE_TAGS := optional
The Android Open Source Project31dd5032009-03-03 19:32:27 -080023
Daniel Sandler4e1cd232011-05-12 00:06:32 -040024LOCAL_STATIC_JAVA_LIBRARIES := android-common android-support-v13
Bjorn Bringert3e244cf2010-02-10 14:17:35 +000025
Tsu Chiang Chuang8c7a2b72011-05-20 16:17:17 -070026LOCAL_SRC_FILES := $(call all-java-files-under, src) $(call all-renderscript-files-under, src)
27
The Android Open Source Project31dd5032009-03-03 19:32:27 -080028
Joe Onoratoa5902522009-07-30 13:37:37 -070029LOCAL_PACKAGE_NAME := Launcher2
Dianne Hackborn12687cf2010-03-09 15:03:20 -080030LOCAL_CERTIFICATE := shared
The Android Open Source Project31dd5032009-03-03 19:32:27 -080031
Jean-Baptiste Queru2b75fb52010-03-03 11:27:21 -080032LOCAL_OVERRIDES_PACKAGES := Home
The Android Open Source Project31dd5032009-03-03 19:32:27 -080033
Ying Wangb159e772010-09-29 15:25:38 -070034LOCAL_PROGUARD_FLAG_FILES := proguard.flags
Ying Wang77de1172010-02-19 18:50:32 -080035
The Android Open Source Project31dd5032009-03-03 19:32:27 -080036include $(BUILD_PACKAGE)
Shih-wei Liao163feae2010-07-20 01:22:10 -070037
Tsu Chiang Chuang923aa622011-06-17 11:26:15 -070038include $(call all-makefiles-under,$(LOCAL_PATH))
Tsu Chiang Chuang8c7a2b72011-05-20 16:17:17 -070039
Shih-wei Liao163feae2010-07-20 01:22:10 -070040endif