java.mk revision ced4bff58e76a16ebce3a35ed24aadc8490ca39b
1# Requires:
2# LOCAL_MODULE_SUFFIX
3# LOCAL_MODULE_CLASS
4# all_res_assets
5
6ifeq ($(TARGET_BUILD_PDK),true)
7ifeq ($(TARGET_BUILD_PDK_JAVA_PLATFORM),)
8# LOCAL_SDK not defined or set to current
9ifeq ($(filter-out current,$(LOCAL_SDK_VERSION)),)
10LOCAL_SDK_VERSION := $(PDK_BUILD_SDK_VERSION)
11endif
12endif # !PDK_JAVA
13endif #PDK
14
15LOCAL_NO_STANDARD_LIBRARIES:=$(strip $(LOCAL_NO_STANDARD_LIBRARIES))
16LOCAL_SDK_VERSION:=$(strip $(LOCAL_SDK_VERSION))
17
18ifneq ($(LOCAL_SDK_VERSION),)
19  ifeq ($(LOCAL_NO_STANDARD_LIBRARIES),true)
20    $(error $(LOCAL_PATH): Must not define both LOCAL_NO_STANDARD_LIBRARIES and LOCAL_SDK_VERSION)
21  else
22    ifeq ($(strip $(filter $(LOCAL_SDK_VERSION),$(TARGET_AVAILABLE_SDK_VERSIONS))),)
23      $(error $(LOCAL_PATH): Invalid LOCAL_SDK_VERSION '$(LOCAL_SDK_VERSION)' \
24             Choices are: $(TARGET_AVAILABLE_SDK_VERSIONS))
25    else
26      ifeq ($(LOCAL_SDK_VERSION)$(TARGET_BUILD_APPS),current)
27        # Use android_stubs_current if LOCAL_SDK_VERSION is current and no TARGET_BUILD_APPS.
28        LOCAL_JAVA_LIBRARIES := android_stubs_current $(LOCAL_JAVA_LIBRARIES)
29      else
30        LOCAL_JAVA_LIBRARIES := sdk_v$(LOCAL_SDK_VERSION) $(LOCAL_JAVA_LIBRARIES)
31      endif
32    endif
33  endif
34else
35  ifneq ($(LOCAL_NO_STANDARD_LIBRARIES),true)
36    LOCAL_JAVA_LIBRARIES := $(TARGET_DEFAULT_JAVA_LIBRARIES) $(LOCAL_JAVA_LIBRARIES)
37  endif
38endif
39
40proto_sources := $(filter %.proto,$(LOCAL_SRC_FILES))
41ifneq ($(proto_sources),)
42ifeq ($(LOCAL_PROTOC_OPTIMIZE_TYPE),micro)
43    LOCAL_STATIC_JAVA_LIBRARIES += libprotobuf-java-2.3.0-micro
44else
45  ifeq ($(LOCAL_PROTOC_OPTIMIZE_TYPE),nano)
46    LOCAL_STATIC_JAVA_LIBRARIES += libprotobuf-java-2.3.0-nano
47  else
48    LOCAL_STATIC_JAVA_LIBRARIES += libprotobuf-java-2.3.0-lite
49  endif
50endif
51endif
52
53LOCAL_JAVA_LIBRARIES := $(sort $(LOCAL_JAVA_LIBRARIES))
54
55LOCAL_BUILT_MODULE_STEM := $(strip $(LOCAL_BUILT_MODULE_STEM))
56ifeq ($(LOCAL_BUILT_MODULE_STEM),)
57$(error $(LOCAL_PATH): Target java template must define LOCAL_BUILT_MODULE_STEM)
58endif
59ifneq ($(filter classes-compiled.jar classes.jar,$(LOCAL_BUILT_MODULE_STEM)),)
60$(error LOCAL_BUILT_MODULE_STEM may not be "$(LOCAL_BUILT_MODULE_STEM)")
61endif
62
63
64##############################################################################
65# Define the intermediate targets before including base_rules so they get
66# the correct environment.
67##############################################################################
68
69intermediates := $(call local-intermediates-dir)
70intermediates.COMMON := $(call local-intermediates-dir,COMMON)
71
72# Choose leaf name for the compiled jar file.
73ifeq ($(LOCAL_EMMA_INSTRUMENT),true)
74full_classes_compiled_jar_leaf := classes-no-debug-var.jar
75built_dex_intermediate_leaf := classes-no-local.dex
76else
77full_classes_compiled_jar_leaf := classes-full-debug.jar
78built_dex_intermediate_leaf := classes-with-local.dex
79endif
80
81ifeq ($(LOCAL_PROGUARD_ENABLED),disabled)
82LOCAL_PROGUARD_ENABLED :=
83endif
84
85ifdef LOCAL_PROGUARD_ENABLED
86proguard_jar_leaf := proguard.classes.jar
87else
88proguard_jar_leaf := noproguard.classes.jar
89endif
90
91full_classes_compiled_jar := $(intermediates.COMMON)/$(full_classes_compiled_jar_leaf)
92jarjar_leaf := classes-jarjar.jar
93full_classes_jarjar_jar := $(intermediates.COMMON)/$(jarjar_leaf)
94emma_intermediates_dir := $(intermediates.COMMON)/emma_out
95# emma is hardcoded to use the leaf name of its input for the output file --
96# only the output directory can be changed
97full_classes_emma_jar := $(emma_intermediates_dir)/lib/$(jarjar_leaf)
98full_classes_proguard_jar := $(intermediates.COMMON)/$(proguard_jar_leaf)
99built_dex_intermediate := $(intermediates.COMMON)/$(built_dex_intermediate_leaf)
100full_classes_stubs_jar := $(intermediates.COMMON)/stubs.jar
101
102ifeq ($(LOCAL_MODULE_CLASS)$(LOCAL_SRC_FILES)$(LOCAL_STATIC_JAVA_LIBRARIES)$(LOCAL_SOURCE_FILES_ALL_GENERATED),APPS)
103# If this is an apk without any Java code (e.g. framework-res), we should skip compiling Java.
104full_classes_jar :=
105built_dex :=
106else
107full_classes_jar := $(intermediates.COMMON)/classes.jar
108built_dex := $(intermediates.COMMON)/classes.dex
109endif
110
111LOCAL_INTERMEDIATE_TARGETS += \
112    $(full_classes_compiled_jar) \
113    $(full_classes_jarjar_jar) \
114    $(full_classes_emma_jar) \
115    $(full_classes_jar) \
116    $(full_classes_proguard_jar) \
117    $(built_dex_intermediate) \
118    $(built_dex) \
119    $(full_classes_stubs_jar)
120
121
122LOCAL_INTERMEDIATE_SOURCE_DIR := $(intermediates.COMMON)/src
123
124###############################################################
125## .rs files: RenderScript sources to .java files and .bc files
126## .fs files: Filterscript sources to .java files and .bc files
127###############################################################
128renderscript_sources := $(filter %.rs %.fs,$(LOCAL_SRC_FILES))
129# Because names of the java files from RenderScript are unknown until the
130# .rs file(s) are compiled, we have to depend on a timestamp file.
131RenderScript_file_stamp :=
132rs_compatibility_jni_libs :=
133ifneq ($(renderscript_sources),)
134renderscript_sources_fullpath := $(addprefix $(LOCAL_PATH)/, $(renderscript_sources))
135RenderScript_file_stamp := $(LOCAL_INTERMEDIATE_SOURCE_DIR)/RenderScript.stamp
136renderscript_intermediate.COMMON := $(LOCAL_INTERMEDIATE_SOURCE_DIR)/renderscript
137
138renderscript_target_api :=
139
140ifneq (,$(LOCAL_RENDERSCRIPT_TARGET_API))
141renderscript_target_api := $(LOCAL_RENDERSCRIPT_TARGET_API)
142else
143ifneq (,$(LOCAL_SDK_VERSION))
144# Set target-api for LOCAL_SDK_VERSIONs other than current.
145ifneq (,$(filter-out current, $(LOCAL_SDK_VERSION)))
146renderscript_target_api := $(LOCAL_SDK_VERSION)
147endif
148endif  # LOCAL_SDK_VERSION is set
149endif  # LOCAL_RENDERSCRIPT_TARGET_API is set
150
151ifeq ($(LOCAL_RENDERSCRIPT_CC),)
152LOCAL_RENDERSCRIPT_CC := $(LLVM_RS_CC)
153endif
154
155# Turn on all warnings and warnings as errors for RS compiles.
156# This can be disabled with LOCAL_RENDERSCRIPT_FLAGS := -Wno-error
157renderscript_flags := -Wall -Werror
158renderscript_flags += $(LOCAL_RENDERSCRIPT_FLAGS)
159
160# prepend the RenderScript system include path
161ifneq ($(filter-out current,$(LOCAL_SDK_VERSION))$(if $(TARGET_BUILD_APPS),$(filter current,$(LOCAL_SDK_VERSION))),)
162# if a numeric LOCAL_SDK_VERSION, or current LOCAL_SDK_VERSION with TARGET_BUILD_APPS
163LOCAL_RENDERSCRIPT_INCLUDES := \
164    $(HISTORICAL_SDK_VERSIONS_ROOT)/renderscript/clang-include \
165    $(HISTORICAL_SDK_VERSIONS_ROOT)/renderscript/include \
166    $(LOCAL_RENDERSCRIPT_INCLUDES)
167else
168LOCAL_RENDERSCRIPT_INCLUDES := \
169    $(TOPDIR)external/clang/lib/Headers \
170    $(TOPDIR)frameworks/rs/scriptc \
171    $(LOCAL_RENDERSCRIPT_INCLUDES)
172endif
173
174ifneq ($(LOCAL_RENDERSCRIPT_INCLUDES_OVERRIDE),)
175LOCAL_RENDERSCRIPT_INCLUDES := $(LOCAL_RENDERSCRIPT_INCLUDES_OVERRIDE)
176endif
177
178$(RenderScript_file_stamp): PRIVATE_RS_INCLUDES := $(LOCAL_RENDERSCRIPT_INCLUDES)
179$(RenderScript_file_stamp): PRIVATE_RS_CC := $(LOCAL_RENDERSCRIPT_CC)
180$(RenderScript_file_stamp): PRIVATE_RS_FLAGS := $(renderscript_flags)
181$(RenderScript_file_stamp): PRIVATE_RS_SOURCE_FILES := $(renderscript_sources_fullpath)
182# By putting the generated java files into $(LOCAL_INTERMEDIATE_SOURCE_DIR), they will be
183# automatically found by the java compiling function transform-java-to-classes.jar.
184$(RenderScript_file_stamp): PRIVATE_RS_OUTPUT_DIR := $(renderscript_intermediate.COMMON)
185$(RenderScript_file_stamp): PRIVATE_RS_TARGET_API := $(renderscript_target_api)
186$(RenderScript_file_stamp): $(renderscript_sources_fullpath) $(LOCAL_RENDERSCRIPT_CC)
187	$(transform-renderscripts-to-java-and-bc)
188
189ifneq ($(LOCAL_RENDERSCRIPT_COMPATIBILITY),)
190bc_files := $(patsubst %.fs,%.bc, $(patsubst %.rs,%.bc, $(notdir $(renderscript_sources))))
191rs_generated_bc := $(addprefix \
192    $(renderscript_intermediate.COMMON)/res/raw/, $(bc_files))
193
194renderscript_intermediate := $(intermediates)/renderscript
195
196# We don't need the .so files in bundled branches
197# Prevent these from showing up on the device
198ifneq (,$(TARGET_BUILD_APPS)$(FORCE_BUILD_RS_COMPAT))
199
200rs_compatibility_jni_libs := $(addprefix \
201    $(renderscript_intermediate)/librs., \
202    $(patsubst %.bc,%.so, $(bc_files)))
203
204$(rs_generated_bc) : $(RenderScript_file_stamp)
205
206rs_support_lib := $(TARGET_OUT_INTERMEDIATE_LIBRARIES)/libRSSupport.so
207rs_jni_lib := $(TARGET_OUT_INTERMEDIATE_LIBRARIES)/librsjni.so
208LOCAL_JNI_SHARED_LIBRARIES += libRSSupport librsjni
209
210
211
212$(rs_compatibility_jni_libs): $(RenderScript_file_stamp) $(RS_PREBUILT_CLCORE) \
213    $(rs_support_lib) $(rs_jni_lib) $(rs_compiler_rt)
214$(rs_compatibility_jni_libs): $(BCC_COMPAT)
215$(rs_compatibility_jni_libs): PRIVATE_CXX := $(TARGET_CXX)
216$(rs_compatibility_jni_libs): $(renderscript_intermediate)/librs.%.so: \
217    $(renderscript_intermediate.COMMON)/res/raw/%.bc
218	$(transform-bc-to-so)
219
220endif
221
222endif
223
224# include the dependency files (.d) generated by llvm-rs-cc.
225renderscript_generated_dep_files := $(addprefix $(renderscript_intermediate.COMMON)/, \
226    $(patsubst %.fs,%.d, $(patsubst %.rs,%.d, $(notdir $(renderscript_sources)))))
227-include $(renderscript_generated_dep_files)
228
229LOCAL_INTERMEDIATE_TARGETS += $(RenderScript_file_stamp)
230# Make sure the generated resource will be added to the apk.
231LOCAL_RESOURCE_DIR := $(LOCAL_INTERMEDIATE_SOURCE_DIR)/renderscript/res $(LOCAL_RESOURCE_DIR)
232endif
233
234# All of the rules after full_classes_compiled_jar are very unlikely
235# to fail except for bugs in their respective tools.  If you would
236# like to run these rules, add the "all" modifier goal to the make
237# command line.
238ifdef full_classes_jar
239java_alternative_checked_module := $(full_classes_compiled_jar)
240else
241java_alternative_checked_module :=
242endif
243
244# TODO: It looks like the only thing we need from base_rules is
245# all_java_sources.  See if we can get that by adding a
246# common_java.mk, and moving the include of base_rules.mk to
247# after all the declarations.
248
249#######################################
250include $(BUILD_SYSTEM)/base_rules.mk
251#######################################
252
253java_alternative_checked_module :=
254
255#######################################
256# defines built_odex along with rule to install odex
257include $(BUILD_SYSTEM)/dex_preopt_odex_install.mk
258#######################################
259
260# Make sure there's something to build.
261ifdef full_classes_jar
262ifndef need_compile_java
263$(error $(LOCAL_PATH): Target java module does not define any source or resource files)
264endif
265endif
266
267# Install the RS compatibility libraries to /system/lib/ if necessary
268ifdef rs_compatibility_jni_libs
269installed_rs_compatibility_jni_libs := $(addprefix $(TARGET_OUT_SHARED_LIBRARIES)/,\
270    $(notdir $(rs_compatibility_jni_libs)))
271# Provide a way to skip sources included in multiple projects.
272ifdef LOCAL_RENDERSCRIPT_SKIP_INSTALL
273skip_install_rs_libs := $(patsubst %.rs,%.so, \
274    $(addprefix $(TARGET_OUT_SHARED_LIBRARIES)/librs., \
275    $(notdir $(LOCAL_RENDERSCRIPT_SKIP_INSTALL))))
276installed_rs_compatibility_jni_libs := \
277    $(filter-out $(skip_install_rs_libs),$(installed_rs_compatibility_jni_libs))
278endif
279ifneq (,$(strip $(installed_rs_compatibility_jni_libs)))
280$(installed_rs_compatibility_jni_libs) : $(TARGET_OUT_SHARED_LIBRARIES)/lib%.so : \
281    $(renderscript_intermediate)/lib%.so
282	$(hide) mkdir -p $(dir $@) && cp -f $< $@
283
284# Install them only if the current module is installed.
285$(LOCAL_INSTALLED_MODULE) : $(installed_rs_compatibility_jni_libs)
286endif
287endif
288
289# We use intermediates.COMMON because the classes.jar/.dex files will be
290# common even if LOCAL_BUILT_MODULE isn't.
291#
292# Override some target variables that base_rules set up for us.
293$(LOCAL_INTERMEDIATE_TARGETS): \
294	PRIVATE_CLASS_INTERMEDIATES_DIR := $(intermediates.COMMON)/classes
295$(LOCAL_INTERMEDIATE_TARGETS): \
296	PRIVATE_SOURCE_INTERMEDIATES_DIR := $(LOCAL_INTERMEDIATE_SOURCE_DIR)
297
298# Since we're using intermediates.COMMON, make sure that it gets cleaned
299# properly.
300$(cleantarget): PRIVATE_CLEAN_FILES += $(intermediates.COMMON)
301
302ifdef full_classes_jar
303
304# Droiddoc isn't currently able to generate stubs for modules, so we're just
305# allowing it to use the classes.jar as the "stubs" that would be use to link
306# against, for the cases where someone needs the jar to link against.
307# - Use the classes.jar instead of the handful of other intermediates that
308#   we have, because it's the most processed, but still hasn't had dex run on
309#   it, so it's closest to what's on the device.
310# - This extra copy, with the dependency on LOCAL_BUILT_MODULE allows the
311#   PRIVATE_ vars to be preserved.
312$(full_classes_stubs_jar): PRIVATE_SOURCE_FILE := $(full_classes_jar)
313$(full_classes_stubs_jar) : $(LOCAL_BUILT_MODULE) | $(ACP)
314	@echo Copying $(PRIVATE_SOURCE_FILE)
315	$(hide) $(ACP) -fp $(PRIVATE_SOURCE_FILE) $@
316ALL_MODULES.$(LOCAL_MODULE).STUBS := $(full_classes_stubs_jar)
317
318# The layers file allows you to enforce a layering between java packages.
319# Run build/tools/java-layers.py for more details.
320layers_file := $(addprefix $(LOCAL_PATH)/, $(LOCAL_JAVA_LAYERS_FILE))
321$(full_classes_compiled_jar): PRIVATE_JAVA_LAYERS_FILE := $(layers_file)
322$(full_classes_compiled_jar): PRIVATE_WARNINGS_ENABLE := $(LOCAL_WARNINGS_ENABLE)
323
324# Compile the java files to a .jar file.
325# This intentionally depends on java_sources, not all_java_sources.
326# Deps for generated source files must be handled separately,
327# via deps on the target that generates the sources.
328$(full_classes_compiled_jar): PRIVATE_JAVACFLAGS := $(LOCAL_JAVACFLAGS)
329$(full_classes_compiled_jar): PRIVATE_JAR_EXCLUDE_FILES := $(LOCAL_JAR_EXCLUDE_FILES)
330$(full_classes_compiled_jar): PRIVATE_JAR_PACKAGES := $(LOCAL_JAR_PACKAGES)
331$(full_classes_compiled_jar): PRIVATE_DONT_DELETE_JAR_META_INF := $(LOCAL_DONT_DELETE_JAR_META_INF)
332$(full_classes_compiled_jar): $(java_sources) $(java_resource_sources) $(full_java_lib_deps) \
333        $(jar_manifest_file) $(layers_file) $(RenderScript_file_stamp) \
334        $(proto_java_sources_file_stamp) $(LOCAL_ADDITIONAL_DEPENDENCIES)
335	$(transform-java-to-classes.jar)
336
337$(full_classes_compiled_jar): PRIVATE_JAVAC_DEBUG_FLAGS := -g
338
339# Run jarjar if necessary, otherwise just copy the file.
340ifneq ($(strip $(LOCAL_JARJAR_RULES)),)
341$(full_classes_jarjar_jar): PRIVATE_JARJAR_RULES := $(LOCAL_JARJAR_RULES)
342$(full_classes_jarjar_jar): $(full_classes_compiled_jar) $(LOCAL_JARJAR_RULES) | $(JARJAR)
343	@echo JarJar: $@
344	$(hide) java -jar $(JARJAR) process $(PRIVATE_JARJAR_RULES) $< $@
345else
346$(full_classes_jarjar_jar): $(full_classes_compiled_jar) | $(ACP)
347	@echo Copying: $@
348	$(hide) $(ACP) -fp $< $@
349endif
350
351ifeq ($(LOCAL_EMMA_INSTRUMENT),true)
352$(full_classes_emma_jar): PRIVATE_EMMA_COVERAGE_FILE := $(intermediates.COMMON)/coverage.em
353$(full_classes_emma_jar): PRIVATE_EMMA_INTERMEDIATES_DIR := $(emma_intermediates_dir)
354# module level coverage filter can be defined using LOCAL_EMMA_COVERAGE_FILTER
355# in Android.mk
356ifdef LOCAL_EMMA_COVERAGE_FILTER
357$(full_classes_emma_jar): PRIVATE_EMMA_COVERAGE_FILTER := $(LOCAL_EMMA_COVERAGE_FILTER)
358else
359# by default, avoid applying emma instrumentation onto emma classes itself,
360# otherwise there will be exceptions thrown
361$(full_classes_emma_jar): PRIVATE_EMMA_COVERAGE_FILTER := *,-emma,-emmarun,-com.vladium.*
362endif
363# this rule will generate both $(PRIVATE_EMMA_COVERAGE_FILE) and
364# $(full_classes_emma_jar)
365$(full_classes_emma_jar): $(full_classes_jarjar_jar) | $(EMMA_JAR)
366	$(transform-classes.jar-to-emma)
367
368else
369$(full_classes_emma_jar): $(full_classes_jarjar_jar) | $(ACP)
370	@echo Copying: $@
371	$(copy-file-to-target)
372endif
373
374# Keep a copy of the jar just before proguard processing.
375$(full_classes_jar): $(full_classes_emma_jar) | $(ACP)
376	@echo Copying: $@
377	$(hide) $(ACP) -fp $< $@
378
379# Run proguard if necessary, otherwise just copy the file.
380ifdef LOCAL_PROGUARD_ENABLED
381ifneq ($(filter-out full custom nosystem obfuscation optimization,$(LOCAL_PROGUARD_ENABLED)),)
382    $(warning while processing: $(LOCAL_MODULE))
383    $(error invalid value for LOCAL_PROGUARD_ENABLED: $(LOCAL_PROGUARD_ENABLED))
384endif
385proguard_dictionary := $(intermediates.COMMON)/proguard_dictionary
386proguard_flags := $(addprefix -libraryjars ,$(full_shared_java_libs)) \
387                  -forceprocessing \
388                  -printmapping $(proguard_dictionary)
389
390ifeq ($(filter nosystem,$(LOCAL_PROGUARD_ENABLED)),)
391proguard_flags += -include $(BUILD_SYSTEM)/proguard.flags
392ifeq ($(LOCAL_EMMA_INSTRUMENT),true)
393proguard_flags += -include $(BUILD_SYSTEM)/proguard.emma.flags
394endif
395# If this is a test package, add proguard keep flags for tests.
396ifneq ($(LOCAL_INSTRUMENTATION_FOR)$(filter tests,$(LOCAL_MODULE_TAGS)),)
397proguard_flags += -include $(BUILD_SYSTEM)/proguard_tests.flags
398endif # test package
399ifeq ($(filter obfuscation,$(LOCAL_PROGUARD_ENABLED)),)
400# By default no obfuscation
401proguard_flags += -dontobfuscate
402endif  # No obfuscation
403ifeq ($(filter optimization,$(LOCAL_PROGUARD_ENABLED)),)
404# By default no optimization
405proguard_flags += -dontoptimize
406endif  # No optimization
407
408ifdef LOCAL_INSTRUMENTATION_FOR
409ifeq ($(filter obfuscation,$(LOCAL_PROGUARD_ENABLED)),)
410# If no obfuscation, link in the instrmented package's classes.jar as a library.
411# link_instr_classes_jar is defined in base_rule.mk
412proguard_flags += -libraryjars $(link_instr_classes_jar)
413else # obfuscation
414# If obfuscation is enabled, the main app must be obfuscated too.
415# We need to run obfuscation using the main app's dictionary,
416# and treat the main app's class.jar as injars instead of libraryjars.
417proguard_flags := -injars  $(link_instr_classes_jar) \
418    -outjars $(intermediates.COMMON)/proguard.$(LOCAL_INSTRUMENTATION_FOR).jar \
419    -include $(link_instr_intermediates_dir.COMMON)/proguard_options \
420    -applymapping $(link_instr_intermediates_dir.COMMON)/proguard_dictionary \
421    -verbose \
422    $(proguard_flags)
423
424# Sometimes (test + main app) uses different keep rules from the main app -
425# apply the main app's dictionary anyway.
426proguard_flags += -ignorewarnings
427
428# Make sure we run Proguard on the main app first
429$(full_classes_proguard_jar) : $(link_instr_intermediates_dir.COMMON)/proguard.classes.jar
430
431endif # no obfuscation
432endif # LOCAL_INSTRUMENTATION_FOR
433endif  # LOCAL_PROGUARD_ENABLED is not nosystem
434
435proguard_flag_files := $(addprefix $(LOCAL_PATH)/, $(LOCAL_PROGUARD_FLAG_FILES))
436LOCAL_PROGUARD_FLAGS += $(addprefix -include , $(proguard_flag_files))
437
438$(full_classes_proguard_jar): PRIVATE_PROGUARD_FLAGS := $(proguard_flags) $(LOCAL_PROGUARD_FLAGS)
439$(full_classes_proguard_jar) : $(full_classes_jar) $(proguard_flag_files) | $(ACP) $(PROGUARD)
440	$(call transform-jar-to-proguard)
441
442else  # LOCAL_PROGUARD_ENABLED not defined
443$(full_classes_proguard_jar) : $(full_classes_jar)
444	@echo Copying: $@
445	$(hide) $(ACP) -fp $< $@
446
447endif # LOCAL_PROGUARD_ENABLED defined
448
449
450# Override PRIVATE_INTERMEDIATES_DIR so that install-dex-debug
451# will work even when intermediates != intermediates.COMMON.
452$(built_dex_intermediate): PRIVATE_INTERMEDIATES_DIR := $(intermediates.COMMON)
453$(built_dex_intermediate): PRIVATE_DX_FLAGS := $(LOCAL_DX_FLAGS)
454# If you instrument class files that have local variable debug information in
455# them emma does not correctly maintain the local variable table.
456# This will cause an error when you try to convert the class files for Android.
457# The workaround here is to build different dex file here based on emma switch
458# then later copy into classes.dex. When emma is on, dx is run with --no-locals
459# option to remove local variable information
460ifeq ($(LOCAL_EMMA_INSTRUMENT),true)
461$(built_dex_intermediate): PRIVATE_DX_FLAGS += --no-locals
462endif
463$(built_dex_intermediate): $(full_classes_proguard_jar) $(DX)
464	$(transform-classes.jar-to-dex)
465$(built_dex): $(built_dex_intermediate) | $(ACP)
466	@echo Copying: $@
467	$(hide) $(ACP) -fp $< $@
468ifneq ($(GENERATE_DEX_DEBUG),)
469	$(install-dex-debug)
470endif
471
472findbugs_xml := $(intermediates.COMMON)/findbugs.xml
473$(findbugs_xml) : PRIVATE_JAR_FILE := $(full_classes_jar)
474$(findbugs_xml) : PRIVATE_AUXCLASSPATH := $(addprefix -auxclasspath ,$(strip \
475								$(call normalize-path-list,$(filter %.jar,\
476										$(full_java_libs)))))
477# We can't depend directly on full_classes_jar because the PRIVATE_
478# vars won't be set up correctly.
479$(findbugs_xml) : $(LOCAL_BUILT_MODULE)
480	@echo Findbugs: $@
481	$(hide) $(FINDBUGS) -textui -effort:min -xml:withMessages \
482		$(PRIVATE_AUXCLASSPATH) \
483		$(PRIVATE_JAR_FILE) \
484		> $@
485
486ALL_FINDBUGS_FILES += $(findbugs_xml)
487
488findbugs_html := $(PRODUCT_OUT)/findbugs/$(LOCAL_MODULE).html
489$(findbugs_html) : PRIVATE_XML_FILE := $(findbugs_xml)
490$(LOCAL_MODULE)-findbugs : $(findbugs_html)
491$(findbugs_html) : $(findbugs_xml)
492	@mkdir -p $(dir $@)
493	@echo ConvertXmlToText: $@
494	$(hide) prebuilt/common/findbugs/bin/convertXmlToText -html:fancy.xsl $(PRIVATE_XML_FILE) \
495	> $@
496
497$(LOCAL_MODULE)-findbugs : $(findbugs_html)
498
499endif  # full_classes_jar is defined
500