Merge commit 'korg/cupcake'
This commit is contained in:
@@ -79,6 +79,22 @@ ifneq ($(words $(BUILD_FINGERPRINT)),1)
|
||||
$(error BUILD_FINGERPRINT cannot contain spaces: "$(BUILD_FINGERPRINT)")
|
||||
endif
|
||||
|
||||
# Display parameters shown under Settings -> About Phone
|
||||
ifeq ($(TARGET_BUILD_VARIANT),user)
|
||||
# User builds should show:
|
||||
# release build number or branch.buld_number non-release builds
|
||||
|
||||
# Dev. branches should have DISPLAY_BUILD_NUMBER set
|
||||
ifeq "true" "$(DISPLAY_BUILD_NUMBER)"
|
||||
BUILD_DISPLAY_ID := $(BUILD_ID).$(BUILD_NUMBER)
|
||||
else
|
||||
BUILD_DISPLAY_ID := $(BUILD_ID)
|
||||
endif
|
||||
else
|
||||
# Non-user builds should show detailed build information
|
||||
BUILD_DISPLAY_ID := $(build_desc)
|
||||
endif
|
||||
|
||||
# Selects the first locale in the list given as the argument,
|
||||
# and splits it into language and region, which each may be
|
||||
# empty.
|
||||
|
35
core/build_id.mk
Executable file → Normal file
35
core/build_id.mk
Executable file → Normal file
@@ -1,3 +1,32 @@
|
||||
# This branch was born out of a naming conventions fix.
|
||||
# The decision was to keep the RC names the same.
|
||||
export BUILD_ID=CRA71C
|
||||
#
|
||||
# Copyright (C) 2008 The Android Open Source Project
|
||||
#
|
||||
# Licensed under the Apache License, Version 2.0 (the "License");
|
||||
# you may not use this file except in compliance with the License.
|
||||
# You may obtain a copy of the License at
|
||||
#
|
||||
# http://www.apache.org/licenses/LICENSE-2.0
|
||||
#
|
||||
# Unless required by applicable law or agreed to in writing, software
|
||||
# distributed under the License is distributed on an "AS IS" BASIS,
|
||||
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
||||
# See the License for the specific language governing permissions and
|
||||
# limitations under the License.
|
||||
#
|
||||
|
||||
#
|
||||
# Defines branch-specific values.
|
||||
#
|
||||
|
||||
# BUILD_ID is usually used to specify the branch name
|
||||
# (like "MAIN") or a branch name and a release candidate
|
||||
# (like "TC1-RC5"). It must be a single word, and is
|
||||
# capitalized by convention.
|
||||
#
|
||||
BUILD_ID := CUPCAKE
|
||||
|
||||
# DISPLAY_BUILD_NUMBER should only be set for development branches,
|
||||
# If set, the BUILD_NUMBER (cl) is appended to the BUILD_ID for
|
||||
# a more descriptive BUILD_ID_DISPLAY, otherwise BUILD_ID_DISPLAY
|
||||
# is the same as BUILD_ID
|
||||
DISPLAY_BUILD_NUMBER := true
|
||||
|
@@ -169,11 +169,13 @@ installclean_files := \
|
||||
./$(PRODUCT_OUT)/*.xlb \
|
||||
./$(PRODUCT_OUT)/*.zip \
|
||||
./$(PRODUCT_OUT)/data \
|
||||
./$(PRODUCT_OUT)/obj/lib \
|
||||
./$(PRODUCT_OUT)/obj/APPS \
|
||||
./$(PRODUCT_OUT)/obj/NOTICE_FILES \
|
||||
./$(PRODUCT_OUT)/obj/PACKAGING \
|
||||
./$(PRODUCT_OUT)/recovery \
|
||||
./$(PRODUCT_OUT)/root \
|
||||
./$(PRODUCT_OUT)/symbols/system/lib \
|
||||
./$(PRODUCT_OUT)/system
|
||||
|
||||
# The files/dirs to delete during a dataclean, which removes any files
|
||||
|
@@ -18,7 +18,15 @@ ifeq ($(LOCAL_UNSTRIPPED_PATH),)
|
||||
endif
|
||||
|
||||
# The name of the target file, without any path prepended.
|
||||
LOCAL_BUILT_MODULE_STEM := $(LOCAL_MODULE)$(LOCAL_MODULE_SUFFIX)
|
||||
# TODO: This duplicates logic from base_rules.mk because we need to
|
||||
# know its results before base_rules.mk is included.
|
||||
# Consolidate the duplicates.
|
||||
LOCAL_MODULE_STEM := $(strip $(LOCAL_MODULE_STEM))
|
||||
ifeq ($(LOCAL_MODULE_STEM),)
|
||||
LOCAL_MODULE_STEM := $(LOCAL_MODULE)
|
||||
endif
|
||||
LOCAL_INSTALLED_MODULE_STEM := $(LOCAL_MODULE_STEM)$(LOCAL_MODULE_SUFFIX)
|
||||
LOCAL_BUILT_MODULE_STEM := $(LOCAL_INSTALLED_MODULE_STEM)
|
||||
|
||||
# base_rules.make defines $(intermediates), but we need its value
|
||||
# before we include base_rules. Make a guess, and verify that
|
||||
|
33
core/java.mk
33
core/java.mk
@@ -72,33 +72,38 @@ LOCAL_NO_EMMA_INSTRUMENT := true
|
||||
LOCAL_NO_EMMA_COMPILE := true
|
||||
endif
|
||||
|
||||
# Choose leaf name for the compiled jar file.
|
||||
ifneq ($(LOCAL_NO_EMMA_COMPILE),true)
|
||||
# If you instrument class files that have local variable debug information in
|
||||
# them emma does not correctly maintain the local variable table.
|
||||
# This will cause an error when you try to convert the class files for Android.
|
||||
# The workaround for this to compile the java classes with only
|
||||
# line and source debug information, not local information.
|
||||
full_classes_compiled_name_jar := classes-no-debug-var.jar
|
||||
$(full_classes_compiled_jar): PRIVATE_JAVAC_DEBUG_FLAGS := -g:{lines,source}
|
||||
full_classes_compiled_jar_leaf := classes-no-debug-var.jar
|
||||
else
|
||||
# when emma is off, compile with the default flags, which contain full debug
|
||||
# info
|
||||
full_classes_compiled_name_jar := classes-full-debug.jar
|
||||
$(full_classes_compiled_jar): PRIVATE_JAVAC_DEBUG_FLAGS := -g
|
||||
full_classes_compiled_jar_leaf := classes-full-debug.jar
|
||||
endif
|
||||
|
||||
# Compile the java files to a .jar file.
|
||||
# This intentionally depends on java_sources, not all_java_sources.
|
||||
# Deps for generated source files must be handled separately,
|
||||
# via deps on the target that generates the sources.
|
||||
full_classes_compiled_jar := $(intermediates.COMMON)/$(full_classes_compiled_name_jar)
|
||||
full_classes_compiled_jar := $(intermediates.COMMON)/$(full_classes_compiled_jar_leaf)
|
||||
$(full_classes_compiled_jar): $(java_sources) $(full_java_lib_deps)
|
||||
$(transform-java-to-classes.jar)
|
||||
|
||||
ifneq ($(LOCAL_NO_EMMA_COMPILE),true)
|
||||
# If you instrument class files that have local variable debug information in
|
||||
# them emma does not correctly maintain the local variable table.
|
||||
# This will cause an error when you try to convert the class files for Android.
|
||||
# The workaround for this to compile the java classes with only
|
||||
# line and source debug information, not local information.
|
||||
$(full_classes_compiled_jar): PRIVATE_JAVAC_DEBUG_FLAGS := -g:{lines,source}
|
||||
else
|
||||
# when emma is off, compile with the default flags, which contain full debug
|
||||
# info
|
||||
$(full_classes_compiled_jar): PRIVATE_JAVAC_DEBUG_FLAGS := -g
|
||||
endif
|
||||
|
||||
emma_intermediates_dir := $(intermediates.COMMON)/emma_out
|
||||
# the 'lib/$(full_classes_compiled_name_jar)' portion of this path is fixed in
|
||||
# the 'lib/$(full_classes_compiled_jar_leaf)' portion of this path is fixed in
|
||||
# the emma tool
|
||||
full_classes_emma_jar := $(emma_intermediates_dir)/lib/$(full_classes_compiled_name_jar)
|
||||
full_classes_emma_jar := $(emma_intermediates_dir)/lib/$(full_classes_compiled_jar_leaf)
|
||||
|
||||
ifeq ($(LOCAL_IS_STATIC_JAVA_LIBRARY),true)
|
||||
# Skip adding emma instrumentation to class files if this is a static library,
|
||||
|
@@ -39,7 +39,7 @@ libnetutils.so 0xADB00000
|
||||
|
||||
# core dalvik runtime support
|
||||
libandroid_servers.so 0xAD900000
|
||||
libicudata.so 0xAD600000
|
||||
#libicudata.so 0xAD600000
|
||||
libicuuc.so 0xAD500000
|
||||
libicui18n.so 0xAD400000
|
||||
libandroid_runtime.so 0xAD300000
|
||||
|
@@ -72,13 +72,3 @@ ifeq "" "$(BUILD_NUMBER)"
|
||||
BUILD_NUMBER := eng.$(USER).$(shell date +%Y%m%d.%H%M%S)
|
||||
endif
|
||||
|
||||
ifeq "true" "$(DISPLAY_BUILD_NUMBER)"
|
||||
# if the build_id.mk has this defined, then BUILD_ID is updated with
|
||||
# the BUILD_NUMBER as well. For development branches, this will be
|
||||
# set, but release branches this will not be set.
|
||||
BUILD_DISPLAY_ID := "$(BUILD_ID).$(BUILD_NUMBER)"
|
||||
else
|
||||
BUILD_DISPLAY_ID := "$(BUILD_ID)"
|
||||
endif
|
||||
|
||||
|
||||
|
Reference in New Issue
Block a user