BigBrother1984 | 18247d0 | 2014-01-02 17:26:44 +0100 | [diff] [blame] | 1 | # Copyright (C) 2013 ParanoidAndroid 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 | |
| 15 | # Check for target product |
| 16 | |
| 17 | ifeq (pa_toroplus,$(TARGET_PRODUCT)) |
| 18 | |
BigBrother1984 | 18247d0 | 2014-01-02 17:26:44 +0100 | [diff] [blame] | 19 | # OVERLAY_TARGET adds overlay asset source |
| 20 | OVERLAY_TARGET := pa_xhdpi |
| 21 | |
| 22 | # Build paprefs from sources |
| 23 | PREFS_FROM_SOURCE ?= true |
| 24 | |
| 25 | # Include ParanoidAndroid common configuration |
| 26 | include vendor/pa/main.mk |
| 27 | |
| 28 | # Inherit AOSP device configuration |
| 29 | $(call inherit-product, device/samsung/toroplus/full_toroplus.mk) |
| 30 | |
| 31 | # Override AOSP build properties |
| 32 | PRODUCT_NAME := pa_toroplus |
| 33 | PRODUCT_BRAND := Google |
| 34 | PRODUCT_MODEL := Galaxy Nexus |
| 35 | PRODUCT_MANUFACTURER := Samsung |
Evan Anderson | a63a040 | 2014-02-28 02:02:48 -0500 | [diff] [blame] | 36 | PRODUCT_BUILD_PROP_OVERRIDES += PRODUCT_NAME=mysidspr BUILD_FINGERPRINT="google/mysidspr/toroplus:4.4.2/KOT49H/737497:user/release-keys" PRIVATE_BUILD_DESC="mysidspr-user 4.4.2 KOT49H 737497 release-keys" |
BigBrother1984 | 18247d0 | 2014-01-02 17:26:44 +0100 | [diff] [blame] | 37 | |
| 38 | endif |