am c39a26b6: Fix bad automatic dependency computations
Merge commit 'c39a26b6f52d189a0bec85cbe168006454b14a9b' * commit 'c39a26b6f52d189a0bec85cbe168006454b14a9b': Fix bad automatic dependency computations Remove duplicate initialization in AdtPlugin.
This commit is contained in:
committed by
The Android Open Source Project
commit
5d83352be2
@@ -120,5 +120,5 @@ $(foreach src,$(c_sources), $(call compile-c-source,$(src)))
|
|||||||
$(foreach src,$(s_sources), $(call compile-s-source,$(src)))
|
$(foreach src,$(s_sources), $(call compile-s-source,$(src)))
|
||||||
$(foreach src,$(cpp_sources), $(call compile-cpp-source,$(src)))
|
$(foreach src,$(cpp_sources), $(call compile-cpp-source,$(src)))
|
||||||
|
|
||||||
LOCAL_DEPENDENCY_DIRS := $(sort $(LOCAL_DEPENDENCY_DIRS))
|
ALL_DEPENDENCY_DIRS += $(sort $(LOCAL_DEPENDENCY_DIRS))
|
||||||
CLEAN_OBJS_DIRS += $(LOCAL_OBJS_DIR)
|
CLEAN_OBJS_DIRS += $(LOCAL_OBJS_DIR)
|
||||||
|
|||||||
@@ -222,7 +222,7 @@ ANDROID_MK_INCLUDED := \
|
|||||||
# generated during the build. It will be updated by build scripts
|
# generated during the build. It will be updated by build scripts
|
||||||
# when module definitions are parsed.
|
# when module definitions are parsed.
|
||||||
#
|
#
|
||||||
DEPENDENCY_DIRS :=
|
ALL_DEPENDENCY_DIRS :=
|
||||||
|
|
||||||
# this is the list of all generated files that we would need to clean
|
# this is the list of all generated files that we would need to clean
|
||||||
ALL_HOST_EXECUTABLES :=
|
ALL_HOST_EXECUTABLES :=
|
||||||
@@ -290,5 +290,5 @@ clean-config:
|
|||||||
$(hide) rm -f $(CONFIG_MAKE) $(CONFIG_H)
|
$(hide) rm -f $(CONFIG_MAKE) $(CONFIG_H)
|
||||||
|
|
||||||
# include dependency information
|
# include dependency information
|
||||||
DEPENDENCY_DIRS := $(sort $(DEPENDENCY_DIRS))
|
ALL_DEPENDENCY_DIRS := $(sort $(ALL_DEPENDENCY_DIRS))
|
||||||
-include $(wildcard $(DEPENDENCY_DIRS:%=%/*.d))
|
-include $(wildcard $(ALL_DEPENDENCY_DIRS:%=%/*.d))
|
||||||
|
|||||||
@@ -1122,22 +1122,6 @@ public class AdtPlugin extends AbstractUIPlugin {
|
|||||||
"/icons/android.png"); //$NON-NLS-1$
|
"/icons/android.png"); //$NON-NLS-1$
|
||||||
sAndroidLogo = sAndroidLogoDesc.createImage();
|
sAndroidLogo = sAndroidLogoDesc.createImage();
|
||||||
|
|
||||||
// get the stream to write in the android console.
|
|
||||||
MessageConsole androidConsole = AdtPlugin.getDefault().getAndroidConsole();
|
|
||||||
mAndroidConsoleStream = androidConsole.newMessageStream();
|
|
||||||
|
|
||||||
mAndroidConsoleErrorStream = androidConsole.newMessageStream();
|
|
||||||
mRed = new Color(getDisplay(), 0xFF, 0x00, 0x00);
|
|
||||||
|
|
||||||
// because this can be run, in some cases, by a non ui thread, and beccause
|
|
||||||
// changing the console properties update the ui, we need to make this change
|
|
||||||
// in the ui thread.
|
|
||||||
getDisplay().asyncExec(new Runnable() {
|
|
||||||
public void run() {
|
|
||||||
mAndroidConsoleErrorStream.setColor(mRed);
|
|
||||||
}
|
|
||||||
});
|
|
||||||
|
|
||||||
// Add a resource listener to handle compiled resources.
|
// Add a resource listener to handle compiled resources.
|
||||||
IWorkspace ws = ResourcesPlugin.getWorkspace();
|
IWorkspace ws = ResourcesPlugin.getWorkspace();
|
||||||
mResourceMonitor = ResourceMonitor.startMonitoring(ws);
|
mResourceMonitor = ResourceMonitor.startMonitoring(ws);
|
||||||
|
|||||||
Reference in New Issue
Block a user