auto import from //branches/cupcake_rel/...@141571
This commit is contained in:
@@ -71,6 +71,8 @@ $(call add-clean-step, rm -rf $(OUT_DIR)/target/product/*/obj/SHARED_LIBRARIES/s
|
|||||||
$(call add-clean-step, rm -rf $(OUT_DIR)/target/product/*/obj/SHARED_LIBRARIES/libwebcore_intermediates)
|
$(call add-clean-step, rm -rf $(OUT_DIR)/target/product/*/obj/SHARED_LIBRARIES/libwebcore_intermediates)
|
||||||
$(call add-clean-step, rm -rf $(OUT_DIR)/target/common/obj/JAVA_LIBRARIES/framework_intermediates)
|
$(call add-clean-step, rm -rf $(OUT_DIR)/target/common/obj/JAVA_LIBRARIES/framework_intermediates)
|
||||||
$(call add-clean-step, rm -rf $(OUT_DIR)/target/common/obj/APPS/PinyinIME_intermediates)
|
$(call add-clean-step, rm -rf $(OUT_DIR)/target/common/obj/APPS/PinyinIME_intermediates)
|
||||||
|
$(call add-clean-step, rm -rf $(OUT_DIR)/target/common/obj/JAVA_LIBRARIES/com.android.inputmethod.pinyin.lib_intermediates)
|
||||||
|
$(call add-clean-step, rm -rf $(OUT_DIR)/target/common/obj/APPS/PinyinIMEGoogleService_intermediates)
|
||||||
|
|
||||||
# ************************************************
|
# ************************************************
|
||||||
# NEWER CLEAN STEPS MUST BE AT THE END OF THE LIST
|
# NEWER CLEAN STEPS MUST BE AT THE END OF THE LIST
|
||||||
|
@@ -1,3 +1,3 @@
|
|||||||
# This branch was born out of a naming conventions fix.
|
# This branch was born out of a naming conventions fix.
|
||||||
# The decision was to keep the RC names the same.
|
# The decision was to keep the RC names the same.
|
||||||
export BUILD_ID=CRA77
|
export BUILD_ID=CRA78C
|
||||||
|
33
core/java.mk
33
core/java.mk
@@ -72,33 +72,38 @@ LOCAL_NO_EMMA_INSTRUMENT := true
|
|||||||
LOCAL_NO_EMMA_COMPILE := true
|
LOCAL_NO_EMMA_COMPILE := true
|
||||||
endif
|
endif
|
||||||
|
|
||||||
|
# Choose leaf name for the compiled jar file.
|
||||||
ifneq ($(LOCAL_NO_EMMA_COMPILE),true)
|
ifneq ($(LOCAL_NO_EMMA_COMPILE),true)
|
||||||
# If you instrument class files that have local variable debug information in
|
full_classes_compiled_jar_leaf := classes-no-debug-var.jar
|
||||||
# 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}
|
|
||||||
else
|
else
|
||||||
# when emma is off, compile with the default flags, which contain full debug
|
full_classes_compiled_jar_leaf := classes-full-debug.jar
|
||||||
# info
|
|
||||||
full_classes_compiled_name_jar := classes-full-debug.jar
|
|
||||||
$(full_classes_compiled_jar): PRIVATE_JAVAC_DEBUG_FLAGS := -g
|
|
||||||
endif
|
endif
|
||||||
|
|
||||||
# Compile the java files to a .jar file.
|
# Compile the java files to a .jar file.
|
||||||
# This intentionally depends on java_sources, not all_java_sources.
|
# This intentionally depends on java_sources, not all_java_sources.
|
||||||
# Deps for generated source files must be handled separately,
|
# Deps for generated source files must be handled separately,
|
||||||
# via deps on the target that generates the sources.
|
# 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)
|
$(full_classes_compiled_jar): $(java_sources) $(full_java_lib_deps)
|
||||||
$(transform-java-to-classes.jar)
|
$(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
|
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
|
# 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)
|
ifeq ($(LOCAL_IS_STATIC_JAVA_LIBRARY),true)
|
||||||
# Skip adding emma instrumentation to class files if this is a static library,
|
# Skip adding emma instrumentation to class files if this is a static library,
|
||||||
|
@@ -9,7 +9,7 @@ PRODUCT_PACKAGES := \
|
|||||||
framework-res \
|
framework-res \
|
||||||
Browser \
|
Browser \
|
||||||
Contacts \
|
Contacts \
|
||||||
Home \
|
Launcher \
|
||||||
HTMLViewer \
|
HTMLViewer \
|
||||||
Phone \
|
Phone \
|
||||||
ContactsProvider \
|
ContactsProvider \
|
||||||
@@ -22,6 +22,3 @@ PRODUCT_PACKAGES := \
|
|||||||
PackageInstaller \
|
PackageInstaller \
|
||||||
Bugreport
|
Bugreport
|
||||||
|
|
||||||
#include basic ringtones
|
|
||||||
include frameworks/base/data/sounds/OriginalAudio.mk
|
|
||||||
|
|
||||||
|
45
tools/droiddoc/NOTICE
Normal file
45
tools/droiddoc/NOTICE
Normal file
@@ -0,0 +1,45 @@
|
|||||||
|
|
||||||
|
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.
|
||||||
|
|
||||||
|
|
||||||
|
======================================================================
|
||||||
|
|
||||||
|
jQuery 1.2.6 - New Wave Javascript
|
||||||
|
|
||||||
|
Copyright (c) 2008 John Resig (jquery.com)
|
||||||
|
Dual licensed under the MIT (MIT-LICENSE.txt)
|
||||||
|
and GPL (GPL-LICENSE.txt) licenses.
|
||||||
|
|
||||||
|
Copyright (c) 2009 John Resig, http://jquery.com/
|
||||||
|
|
||||||
|
Permission is hereby granted, free of charge, to any person obtaining
|
||||||
|
a copy of this software and associated documentation files (the
|
||||||
|
"Software"), to deal in the Software without restriction, including
|
||||||
|
without limitation the rights to use, copy, modify, merge, publish,
|
||||||
|
distribute, sublicense, and/or sell copies of the Software, and to
|
||||||
|
permit persons to whom the Software is furnished to do so, subject to
|
||||||
|
the following conditions:
|
||||||
|
|
||||||
|
The above copyright notice and this permission notice shall be
|
||||||
|
included in all copies or substantial portions of the Software.
|
||||||
|
|
||||||
|
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
|
||||||
|
EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
|
||||||
|
MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
|
||||||
|
NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
|
||||||
|
LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
|
||||||
|
OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
|
||||||
|
WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
|
||||||
|
|
@@ -236,7 +236,7 @@ void clone_elf(Elf *elf, Elf *newelf,
|
|||||||
{
|
{
|
||||||
/* Mark the symbol table's string table for removal. */
|
/* Mark the symbol table's string table for removal. */
|
||||||
INFO("Section [%s] (static symbol-string table) will be stripped from image.\n",
|
INFO("Section [%s] (static symbol-string table) will be stripped from image.\n",
|
||||||
shdr_info[cnt].name);
|
shdr_info[shdr_info[cnt].shdr.sh_link].name);
|
||||||
shdr_info[shdr_info[cnt].shdr.sh_link].idx = 0;
|
shdr_info[shdr_info[cnt].shdr.sh_link].idx = 0;
|
||||||
}
|
}
|
||||||
else {
|
else {
|
||||||
|
Reference in New Issue
Block a user