The Android Open Source Project | 31dd503 | 2009-03-03 19:32:27 -0800 | [diff] [blame] | 1 | # |
| 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 | |
| 17 | LOCAL_PATH := $(call my-dir) |
| 18 | include $(CLEAR_VARS) |
| 19 | |
Jean-Baptiste Queru | 2583ac5 | 2010-01-05 11:09:52 -0800 | [diff] [blame] | 20 | LOCAL_MODULE_TAGS := optional |
The Android Open Source Project | 31dd503 | 2009-03-03 19:32:27 -0800 | [diff] [blame] | 21 | |
Bjorn Bringert | 3e244cf | 2010-02-10 14:17:35 +0000 | [diff] [blame] | 22 | LOCAL_STATIC_JAVA_LIBRARIES := android-common |
| 23 | |
The Android Open Source Project | 31dd503 | 2009-03-03 19:32:27 -0800 | [diff] [blame] | 24 | LOCAL_SRC_FILES := $(call all-subdir-java-files) |
| 25 | |
Joe Onorato | a590252 | 2009-07-30 13:37:37 -0700 | [diff] [blame] | 26 | LOCAL_PACKAGE_NAME := Launcher2 |
Dianne Hackborn | 12687cf | 2010-03-09 15:03:20 -0800 | [diff] [blame] | 27 | LOCAL_CERTIFICATE := shared |
The Android Open Source Project | 31dd503 | 2009-03-03 19:32:27 -0800 | [diff] [blame] | 28 | |
Jean-Baptiste Queru | 2b75fb5 | 2010-03-03 11:27:21 -0800 | [diff] [blame] | 29 | LOCAL_OVERRIDES_PACKAGES := Home |
The Android Open Source Project | 31dd503 | 2009-03-03 19:32:27 -0800 | [diff] [blame] | 30 | |
Ying Wang | b159e77 | 2010-09-29 15:25:38 -0700 | [diff] [blame^] | 31 | LOCAL_PROGUARD_FLAG_FILES := proguard.flags |
Ying Wang | 77de117 | 2010-02-19 18:50:32 -0800 | [diff] [blame] | 32 | |
The Android Open Source Project | 31dd503 | 2009-03-03 19:32:27 -0800 | [diff] [blame] | 33 | include $(BUILD_PACKAGE) |