Advertisement
Guest User

Untitled

a guest
Feb 1st, 2013
176
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.74 KB | None | 0 0
  1. # You may obtain a copy of the License at
  2. #
  3. # http://www.apache.org/licenses/LICENSE-2.0
  4. #
  5. # Unless required by applicable law or agreed to in writing, software
  6. # distributed under the License is distributed on an "AS IS" BASIS,
  7. # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
  8. # See the License for the specific language governing permissions and
  9. # limitations under the License.
  10.  
  11. # Check for target product
  12. ifeq (pa_blade2_p736e,$(TARGET_PRODUCT))
  13.  
  14. # Define PA bootanimation size
  15. PARANOID_BOOTANIMATION_NAME := HDPI
  16.  
  17. # OVERLAY_TARGET adds overlay asset source
  18. OVERLAY_TARGET := pa_blade2_p736e
  19.  
  20. # Build paprefs from sources
  21. PREFS_FROM_SOURCE ?= false
  22.  
  23. # Developer version
  24. DEVELOPER_VERSION := true
  25.  
  26. # Include ParanoidAndroid common configuration
  27. include vendor/pa/config/pa_common.mk
  28.  
  29. # Inherit device configuration
  30. $(call inherit-product, device/zte/blade2_p736e/blade2_p736e.mk)
  31.  
  32. # Product Package Extras - Repos can be added manually or via addprojects.py
  33. -include vendor/pa/packages/blade2_p736e.mk
  34.  
  35. # Override AOSP build properties
  36. PRODUCT_NAME := pa_blade2_p736e
  37. PRODUCT_BRAND := ZTE
  38. PRODUCT_MODEL := Crescent
  39. PRODUCT_MANUFACTURER := ZTE
  40. PRODUCT_BUILD_PROP_OVERRIDES += PRODUCT_NAME=blade2_p736e BUILD_ID=JRO03C BUILD_FINGERPRINT=ZTE/N880E_JB/atlas40:4.1.1/JRO03C/eng.songsy.20120718.233441:eng/test-keys PRIVATE_BUILD_DESC="N880E_JB-eng 4.1.1 JRO03C eng.songsy.20120718.233441 test-keys" BUILD_NUMBER=eng.songsy.20120718.233441
  41.  
  42. # Update local_manifest.xml
  43. #GET_VENDOR_PROPS := $(shell vendor/pa/tools/getvendorprops.py $(PRODUCT_NAME))
  44. GET_PROJECT_RMS := $(shell vendor/pa/tools/removeprojects.py $(PRODUCT_NAME))
  45. GET_PROJECT_ADDS := $(shell vendor/pa/tools/addprojects.py $(PRODUCT_NAME))
  46.  
  47. endif
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement