OSDN Git Service

Update Security String to 2016-11-05 on klp-dev am: 5ecba8e0cc
[android-x86/build.git] / core / java.mk
1 # Requires:
2 # LOCAL_MODULE_SUFFIX
3 # LOCAL_MODULE_CLASS
4 # all_res_assets
5
6 ifeq ($(TARGET_BUILD_PDK),true)
7 ifeq ($(TARGET_BUILD_PDK_JAVA_PLATFORM),)
8 # LOCAL_SDK not defined or set to current
9 ifeq ($(filter-out current,$(LOCAL_SDK_VERSION)),)
10 LOCAL_SDK_VERSION := $(PDK_BUILD_SDK_VERSION)
11 endif
12 endif # !PDK_JAVA
13 endif #PDK
14
15 LOCAL_NO_STANDARD_LIBRARIES:=$(strip $(LOCAL_NO_STANDARD_LIBRARIES))
16 LOCAL_SDK_VERSION:=$(strip $(LOCAL_SDK_VERSION))
17
18 ifneq ($(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
34 else
35   ifneq ($(LOCAL_NO_STANDARD_LIBRARIES),true)
36     LOCAL_JAVA_LIBRARIES := $(TARGET_DEFAULT_JAVA_LIBRARIES) $(LOCAL_JAVA_LIBRARIES)
37   endif
38 endif
39
40 proto_sources := $(filter %.proto,$(LOCAL_SRC_FILES))
41 ifneq ($(proto_sources),)
42 ifeq ($(LOCAL_PROTOC_OPTIMIZE_TYPE),micro)
43     LOCAL_STATIC_JAVA_LIBRARIES += libprotobuf-java-2.3.0-micro
44 else
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
50 endif
51 endif
52
53 LOCAL_JAVA_LIBRARIES := $(sort $(LOCAL_JAVA_LIBRARIES))
54
55 LOCAL_BUILT_MODULE_STEM := $(strip $(LOCAL_BUILT_MODULE_STEM))
56 ifeq ($(LOCAL_BUILT_MODULE_STEM),)
57 $(error $(LOCAL_PATH): Target java template must define LOCAL_BUILT_MODULE_STEM)
58 endif
59 ifneq ($(filter classes-compiled.jar classes.jar,$(LOCAL_BUILT_MODULE_STEM)),)
60 $(error LOCAL_BUILT_MODULE_STEM may not be "$(LOCAL_BUILT_MODULE_STEM)")
61 endif
62
63
64 ##############################################################################
65 # Define the intermediate targets before including base_rules so they get
66 # the correct environment.
67 ##############################################################################
68
69 intermediates := $(call local-intermediates-dir)
70 intermediates.COMMON := $(call local-intermediates-dir,COMMON)
71
72 # Choose leaf name for the compiled jar file.
73 ifeq ($(LOCAL_EMMA_INSTRUMENT),true)
74 full_classes_compiled_jar_leaf := classes-no-debug-var.jar
75 built_dex_intermediate_leaf := classes-no-local.dex
76 else
77 full_classes_compiled_jar_leaf := classes-full-debug.jar
78 built_dex_intermediate_leaf := classes-with-local.dex
79 endif
80
81 ifeq ($(LOCAL_PROGUARD_ENABLED),disabled)
82 LOCAL_PROGUARD_ENABLED :=
83 endif
84
85 ifdef LOCAL_PROGUARD_ENABLED
86 proguard_jar_leaf := proguard.classes.jar
87 else
88 proguard_jar_leaf := noproguard.classes.jar
89 endif
90
91 full_classes_compiled_jar := $(intermediates.COMMON)/$(full_classes_compiled_jar_leaf)
92 jarjar_leaf := classes-jarjar.jar
93 full_classes_jarjar_jar := $(intermediates.COMMON)/$(jarjar_leaf)
94 emma_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
97 full_classes_emma_jar := $(emma_intermediates_dir)/lib/$(jarjar_leaf)
98 full_classes_proguard_jar := $(intermediates.COMMON)/$(proguard_jar_leaf)
99 built_dex_intermediate := $(intermediates.COMMON)/$(built_dex_intermediate_leaf)
100 full_classes_stubs_jar := $(intermediates.COMMON)/stubs.jar
101
102 ifeq ($(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.
104 full_classes_jar :=
105 built_dex :=
106 else
107 full_classes_jar := $(intermediates.COMMON)/classes.jar
108 built_dex := $(intermediates.COMMON)/classes.dex
109 endif
110
111 LOCAL_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
122 LOCAL_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 ###############################################################
128 renderscript_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.
131 RenderScript_file_stamp :=
132 rs_compatibility_jni_libs :=
133 ifneq ($(renderscript_sources),)
134 renderscript_sources_fullpath := $(addprefix $(LOCAL_PATH)/, $(renderscript_sources))
135 RenderScript_file_stamp := $(LOCAL_INTERMEDIATE_SOURCE_DIR)/RenderScript.stamp
136 renderscript_intermediate.COMMON := $(LOCAL_INTERMEDIATE_SOURCE_DIR)/renderscript
137
138 renderscript_target_api :=
139
140 ifneq (,$(LOCAL_RENDERSCRIPT_TARGET_API))
141 renderscript_target_api := $(LOCAL_RENDERSCRIPT_TARGET_API)
142 else
143 ifneq (,$(LOCAL_SDK_VERSION))
144 # Set target-api for LOCAL_SDK_VERSIONs other than current.
145 ifneq (,$(filter-out current, $(LOCAL_SDK_VERSION)))
146 renderscript_target_api := $(LOCAL_SDK_VERSION)
147 endif
148 endif  # LOCAL_SDK_VERSION is set
149 endif  # LOCAL_RENDERSCRIPT_TARGET_API is set
150
151 ifeq ($(LOCAL_RENDERSCRIPT_CC),)
152 LOCAL_RENDERSCRIPT_CC := $(LLVM_RS_CC)
153 endif
154
155 # Turn on all warnings and warnings as errors for RS compiles.
156 # This can be disabled with LOCAL_RENDERSCRIPT_FLAGS := -Wno-error
157 renderscript_flags := -Wall -Werror
158 renderscript_flags += $(LOCAL_RENDERSCRIPT_FLAGS)
159
160 # prepend the RenderScript system include path
161 ifneq ($(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
163 LOCAL_RENDERSCRIPT_INCLUDES := \
164     $(HISTORICAL_SDK_VERSIONS_ROOT)/renderscript/clang-include \
165     $(HISTORICAL_SDK_VERSIONS_ROOT)/renderscript/include \
166     $(LOCAL_RENDERSCRIPT_INCLUDES)
167 else
168 LOCAL_RENDERSCRIPT_INCLUDES := \
169     $(TOPDIR)external/clang/lib/Headers \
170     $(TOPDIR)frameworks/rs/scriptc \
171     $(LOCAL_RENDERSCRIPT_INCLUDES)
172 endif
173
174 ifneq ($(LOCAL_RENDERSCRIPT_INCLUDES_OVERRIDE),)
175 LOCAL_RENDERSCRIPT_INCLUDES := $(LOCAL_RENDERSCRIPT_INCLUDES_OVERRIDE)
176 endif
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
189 ifneq ($(LOCAL_RENDERSCRIPT_COMPATIBILITY),)
190 bc_files := $(patsubst %.fs,%.bc, $(patsubst %.rs,%.bc, $(notdir $(renderscript_sources))))
191 rs_generated_bc := $(addprefix \
192     $(renderscript_intermediate.COMMON)/res/raw/, $(bc_files))
193
194 renderscript_intermediate := $(intermediates)/renderscript
195
196 # We don't need the .so files in bundled branches
197 # Prevent these from showing up on the device
198 ifneq (,$(TARGET_BUILD_APPS)$(FORCE_BUILD_RS_COMPAT))
199
200 rs_compatibility_jni_libs := $(addprefix \
201     $(renderscript_intermediate)/librs., \
202     $(patsubst %.bc,%.so, $(bc_files)))
203
204 $(rs_generated_bc) : $(RenderScript_file_stamp)
205
206 rs_support_lib := $(TARGET_OUT_INTERMEDIATE_LIBRARIES)/libRSSupport.so
207 rs_jni_lib := $(TARGET_OUT_INTERMEDIATE_LIBRARIES)/librsjni.so
208 LOCAL_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
220 endif
221
222 endif
223
224 # include the dependency files (.d) generated by llvm-rs-cc.
225 renderscript_generated_dep_files := $(addprefix $(renderscript_intermediate.COMMON)/, \
226     $(patsubst %.fs,%.d, $(patsubst %.rs,%.d, $(notdir $(renderscript_sources)))))
227 -include $(renderscript_generated_dep_files)
228
229 LOCAL_INTERMEDIATE_TARGETS += $(RenderScript_file_stamp)
230 # Make sure the generated resource will be added to the apk.
231 LOCAL_RESOURCE_DIR := $(LOCAL_INTERMEDIATE_SOURCE_DIR)/renderscript/res $(LOCAL_RESOURCE_DIR)
232 endif
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.
238 ifdef full_classes_jar
239 java_alternative_checked_module := $(full_classes_compiled_jar)
240 else
241 java_alternative_checked_module :=
242 endif
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 #######################################
250 include $(BUILD_SYSTEM)/base_rules.mk
251 #######################################
252
253 java_alternative_checked_module :=
254
255 #######################################
256 # defines built_odex along with rule to install odex
257 include $(BUILD_SYSTEM)/dex_preopt_odex_install.mk
258 #######################################
259
260 # Make sure there's something to build.
261 ifdef full_classes_jar
262 ifndef need_compile_java
263 $(error $(LOCAL_PATH): Target java module does not define any source or resource files)
264 endif
265 endif
266
267 # Install the RS compatibility libraries to /system/lib/ if necessary
268 ifdef rs_compatibility_jni_libs
269 installed_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.
272 ifdef LOCAL_RENDERSCRIPT_SKIP_INSTALL
273 skip_install_rs_libs := $(patsubst %.rs,%.so, \
274     $(addprefix $(TARGET_OUT_SHARED_LIBRARIES)/librs., \
275     $(notdir $(LOCAL_RENDERSCRIPT_SKIP_INSTALL))))
276 installed_rs_compatibility_jni_libs := \
277     $(filter-out $(skip_install_rs_libs),$(installed_rs_compatibility_jni_libs))
278 endif
279 ifneq (,$(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)
286 endif
287 endif
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
302 ifdef 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) $@
316 ALL_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.
320 layers_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.
340 ifneq ($(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) $< $@
345 else
346 $(full_classes_jarjar_jar): $(full_classes_compiled_jar) | $(ACP)
347         @echo Copying: $@
348         $(hide) $(ACP) -fp $< $@
349 endif
350
351 ifeq ($(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
356 ifdef LOCAL_EMMA_COVERAGE_FILTER
357 $(full_classes_emma_jar): PRIVATE_EMMA_COVERAGE_FILTER := $(LOCAL_EMMA_COVERAGE_FILTER)
358 else
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.*
362 endif
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
368 else
369 $(full_classes_emma_jar): $(full_classes_jarjar_jar) | $(ACP)
370         @echo Copying: $@
371         $(copy-file-to-target)
372 endif
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.
380 ifdef LOCAL_PROGUARD_ENABLED
381 ifneq ($(filter-out full custom nosystem obfuscation optimization shrinktests,$(LOCAL_PROGUARD_ENABLED)),)
382     $(warning while processing: $(LOCAL_MODULE))
383     $(error invalid value for LOCAL_PROGUARD_ENABLED: $(LOCAL_PROGUARD_ENABLED))
384 endif
385 proguard_dictionary := $(intermediates.COMMON)/proguard_dictionary
386 proguard_flags := $(addprefix -libraryjars ,$(full_shared_java_libs)) \
387                   -forceprocessing \
388                   -printmapping $(proguard_dictionary)
389
390 ifeq ($(filter nosystem,$(LOCAL_PROGUARD_ENABLED)),)
391 proguard_flags += -include $(BUILD_SYSTEM)/proguard.flags
392 ifeq ($(LOCAL_EMMA_INSTRUMENT),true)
393 proguard_flags += -include $(BUILD_SYSTEM)/proguard.emma.flags
394 endif
395 # If this is a test package, add proguard keep flags for tests.
396 ifneq ($(LOCAL_INSTRUMENTATION_FOR)$(filter tests,$(LOCAL_MODULE_TAGS)),)
397 proguard_flags += -include $(BUILD_SYSTEM)/proguard_tests.flags
398 ifeq ($(filter shrinktests,$(LOCAL_PROGUARD_ENABLED)),)
399 proguard_flags += -dontshrink # don't shrink tests by default
400 endif # shrinktests
401 endif # test package
402 ifeq ($(filter obfuscation,$(LOCAL_PROGUARD_ENABLED)),)
403 # By default no obfuscation
404 proguard_flags += -dontobfuscate
405 endif  # No obfuscation
406 ifeq ($(filter optimization,$(LOCAL_PROGUARD_ENABLED)),)
407 # By default no optimization
408 proguard_flags += -dontoptimize
409 endif  # No optimization
410
411 ifdef LOCAL_INSTRUMENTATION_FOR
412 ifeq ($(filter obfuscation,$(LOCAL_PROGUARD_ENABLED)),)
413 # If no obfuscation, link in the instrmented package's classes.jar as a library.
414 # link_instr_classes_jar is defined in base_rule.mk
415 proguard_flags += -libraryjars $(link_instr_classes_jar)
416 else # obfuscation
417 # If obfuscation is enabled, the main app must be obfuscated too.
418 # We need to run obfuscation using the main app's dictionary,
419 # and treat the main app's class.jar as injars instead of libraryjars.
420 proguard_flags := -injars  $(link_instr_classes_jar) \
421     -outjars $(intermediates.COMMON)/proguard.$(LOCAL_INSTRUMENTATION_FOR).jar \
422     -include $(link_instr_intermediates_dir.COMMON)/proguard_options \
423     -applymapping $(link_instr_intermediates_dir.COMMON)/proguard_dictionary \
424     -verbose \
425     $(proguard_flags)
426
427 # Sometimes (test + main app) uses different keep rules from the main app -
428 # apply the main app's dictionary anyway.
429 proguard_flags += -ignorewarnings
430
431 # Make sure we run Proguard on the main app first
432 $(full_classes_proguard_jar) : $(link_instr_intermediates_dir.COMMON)/proguard.classes.jar
433
434 endif # no obfuscation
435 endif # LOCAL_INSTRUMENTATION_FOR
436 endif  # LOCAL_PROGUARD_ENABLED is not nosystem
437
438 proguard_flag_files := $(addprefix $(LOCAL_PATH)/, $(LOCAL_PROGUARD_FLAG_FILES))
439 LOCAL_PROGUARD_FLAGS += $(addprefix -include , $(proguard_flag_files))
440
441 ifdef LOCAL_TEST_MODULE_TO_PROGUARD_WITH
442 extra_input_jar := $(call intermediates-dir-for,APPS,$(LOCAL_TEST_MODULE_TO_PROGUARD_WITH),,COMMON)/classes.jar
443 else
444 extra_input_jar :=
445 endif
446 $(full_classes_proguard_jar): PRIVATE_EXTRA_INPUT_JAR := $(extra_input_jar)
447 $(full_classes_proguard_jar): PRIVATE_PROGUARD_FLAGS := $(proguard_flags) $(LOCAL_PROGUARD_FLAGS)
448 $(full_classes_proguard_jar) : $(full_classes_jar) $(extra_input_jar) $(proguard_flag_files) | $(ACP) $(PROGUARD)
449         $(call transform-jar-to-proguard)
450
451 else  # LOCAL_PROGUARD_ENABLED not defined
452 $(full_classes_proguard_jar) : $(full_classes_jar)
453         @echo Copying: $@
454         $(hide) $(ACP) -fp $< $@
455
456 endif # LOCAL_PROGUARD_ENABLED defined
457
458
459 # Override PRIVATE_INTERMEDIATES_DIR so that install-dex-debug
460 # will work even when intermediates != intermediates.COMMON.
461 $(built_dex_intermediate): PRIVATE_INTERMEDIATES_DIR := $(intermediates.COMMON)
462 $(built_dex_intermediate): PRIVATE_DX_FLAGS := $(LOCAL_DX_FLAGS)
463 # If you instrument class files that have local variable debug information in
464 # them emma does not correctly maintain the local variable table.
465 # This will cause an error when you try to convert the class files for Android.
466 # The workaround here is to build different dex file here based on emma switch
467 # then later copy into classes.dex. When emma is on, dx is run with --no-locals
468 # option to remove local variable information
469 ifeq ($(LOCAL_EMMA_INSTRUMENT),true)
470 $(built_dex_intermediate): PRIVATE_DX_FLAGS += --no-locals
471 endif
472 $(built_dex_intermediate): $(full_classes_proguard_jar) $(DX)
473         $(transform-classes.jar-to-dex)
474 $(built_dex): $(built_dex_intermediate) | $(ACP)
475         @echo Copying: $@
476         $(hide) $(ACP) -fp $< $@
477 ifneq ($(GENERATE_DEX_DEBUG),)
478         $(install-dex-debug)
479 endif
480
481 findbugs_xml := $(intermediates.COMMON)/findbugs.xml
482 $(findbugs_xml) : PRIVATE_JAR_FILE := $(full_classes_jar)
483 $(findbugs_xml) : PRIVATE_AUXCLASSPATH := $(addprefix -auxclasspath ,$(strip \
484                                                                 $(call normalize-path-list,$(filter %.jar,\
485                                                                                 $(full_java_libs)))))
486 # We can't depend directly on full_classes_jar because the PRIVATE_
487 # vars won't be set up correctly.
488 $(findbugs_xml) : $(LOCAL_BUILT_MODULE)
489         @echo Findbugs: $@
490         $(hide) $(FINDBUGS) -textui -effort:min -xml:withMessages \
491                 $(PRIVATE_AUXCLASSPATH) \
492                 $(PRIVATE_JAR_FILE) \
493                 > $@
494
495 ALL_FINDBUGS_FILES += $(findbugs_xml)
496
497 findbugs_html := $(PRODUCT_OUT)/findbugs/$(LOCAL_MODULE).html
498 $(findbugs_html) : PRIVATE_XML_FILE := $(findbugs_xml)
499 $(LOCAL_MODULE)-findbugs : $(findbugs_html)
500 $(findbugs_html) : $(findbugs_xml)
501         @mkdir -p $(dir $@)
502         @echo ConvertXmlToText: $@
503         $(hide) prebuilt/common/findbugs/bin/convertXmlToText -html:fancy.xsl $(PRIVATE_XML_FILE) \
504         > $@
505
506 $(LOCAL_MODULE)-findbugs : $(findbugs_html)
507
508 endif  # full_classes_jar is defined