blob: 88dd3b7d375b3ad79d15b7cdfb614b26a8c19c17 [file] [log] [blame]
BigBrother198418247d02014-01-02 17:26:44 +01001# 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
17ifeq (pa_toro,$(TARGET_PRODUCT))
18
BigBrother198418247d02014-01-02 17:26:44 +010019# OVERLAY_TARGET adds overlay asset source
20OVERLAY_TARGET := pa_xhdpi
21
22# Build paprefs from sources
23PREFS_FROM_SOURCE ?= true
24
25# Include ParanoidAndroid common configuration
26include vendor/pa/main.mk
27
28# Inherit AOSP device configuration
29$(call inherit-product, device/samsung/toro/full_toro.mk)
30
31# Override AOSP build properties
32PRODUCT_NAME := pa_toro
33PRODUCT_BRAND := Google
34PRODUCT_MODEL := Galaxy Nexus
35PRODUCT_MANUFACTURER := Samsung
Evan Andersona63a0402014-02-28 02:02:48 -050036PRODUCT_BUILD_PROP_OVERRIDES += PRODUCT_NAME=mysid BUILD_FINGERPRINT="google/mysid/toro:4.4.2/KOT49H/737497:user/release-keys" PRIVATE_BUILD_DESC="mysid-user 4.4.2 KOT49H 737497 release-keys"
BigBrother198418247d02014-01-02 17:26:44 +010037
38endif