blob: 1ea4b03b8fc0020934c31a362d4628dc9fd9d6fe [file] [log] [blame]
Marco Nelissenbb362b22009-10-15 13:40:54 -07001#
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 Liao16f66f42010-07-20 01:01:00 -070017ifneq ($(TARGET_SIMULATOR),true)
18
Marco Nelissenbb362b22009-10-15 13:40:54 -070019LOCAL_PATH := $(call my-dir)
20include $(CLEAR_VARS)
21
Jean-Baptiste Querua23d8e02010-01-05 11:09:55 -080022LOCAL_MODULE_TAGS := optional
Marco Nelissenbb362b22009-10-15 13:40:54 -070023
Shih-wei Liao16f66f42010-07-20 01:01:00 -070024LOCAL_SRC_FILES := $(call all-subdir-java-files) $(call all-renderscript-files-under, src)
Marco Nelissenbb362b22009-10-15 13:40:54 -070025
26LOCAL_PACKAGE_NAME := VisualizationWallpapers
27LOCAL_CERTIFICATE := shared
28
Ying Wang9aa7e642010-02-19 18:54:59 -080029LOCAL_PROGUARD_FLAGS := -include $(LOCAL_PATH)/proguard.flags
30
Marco Nelissenbb362b22009-10-15 13:40:54 -070031include $(BUILD_PACKAGE)
Shih-wei Liao16f66f42010-07-20 01:01:00 -070032
33endif