Home | History | Annotate | Download | only in core
      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))
    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 # Make sure there's something to build.
    256 ifdef full_classes_jar
    257 ifndef need_compile_java
    258 $(error $(LOCAL_PATH): Target java module does not define any source or resource files)
    259 endif
    260 endif
    261 
    262 # Install the RS compatibility libraries to /system/lib/ if necessary
    263 ifdef rs_compatibility_jni_libs
    264 installed_rs_compatibility_jni_libs := $(addprefix $(TARGET_OUT_SHARED_LIBRARIES)/,\
    265     $(notdir $(rs_compatibility_jni_libs)))
    266 # Provide a way to skip sources included in multiple projects.
    267 ifdef LOCAL_RENDERSCRIPT_SKIP_INSTALL
    268 skip_install_rs_libs := $(patsubst %.rs,%.so, \
    269     $(addprefix $(TARGET_OUT_SHARED_LIBRARIES)/librs., \
    270     $(notdir $(LOCAL_RENDERSCRIPT_SKIP_INSTALL))))
    271 installed_rs_compatibility_jni_libs := \
    272     $(filter-out $(skip_install_rs_libs),$(installed_rs_compatibility_jni_libs))
    273 endif
    274 ifneq (,$(strip $(installed_rs_compatibility_jni_libs)))
    275 $(installed_rs_compatibility_jni_libs) : $(TARGET_OUT_SHARED_LIBRARIES)/lib%.so : \
    276     $(renderscript_intermediate)/lib%.so
    277 	$(hide) mkdir -p $(dir $@) && cp -f $< $@
    278 
    279 # Install them only if the current module is installed.
    280 $(LOCAL_INSTALLED_MODULE) : $(installed_rs_compatibility_jni_libs)
    281 endif
    282 endif
    283 
    284 # We use intermediates.COMMON because the classes.jar/.dex files will be
    285 # common even if LOCAL_BUILT_MODULE isn't.
    286 #
    287 # Override some target variables that base_rules set up for us.
    288 $(LOCAL_INTERMEDIATE_TARGETS): \
    289 	PRIVATE_CLASS_INTERMEDIATES_DIR := $(intermediates.COMMON)/classes
    290 $(LOCAL_INTERMEDIATE_TARGETS): \
    291 	PRIVATE_SOURCE_INTERMEDIATES_DIR := $(LOCAL_INTERMEDIATE_SOURCE_DIR)
    292 
    293 # Since we're using intermediates.COMMON, make sure that it gets cleaned
    294 # properly.
    295 $(cleantarget): PRIVATE_CLEAN_FILES += $(intermediates.COMMON)
    296 
    297 ifdef full_classes_jar
    298 
    299 # Droiddoc isn't currently able to generate stubs for modules, so we're just
    300 # allowing it to use the classes.jar as the "stubs" that would be use to link
    301 # against, for the cases where someone needs the jar to link against.
    302 # - Use the classes.jar instead of the handful of other intermediates that
    303 #   we have, because it's the most processed, but still hasn't had dex run on
    304 #   it, so it's closest to what's on the device.
    305 # - This extra copy, with the dependency on LOCAL_BUILT_MODULE allows the
    306 #   PRIVATE_ vars to be preserved.
    307 $(full_classes_stubs_jar): PRIVATE_SOURCE_FILE := $(full_classes_jar)
    308 $(full_classes_stubs_jar) : $(LOCAL_BUILT_MODULE) | $(ACP)
    309 	@echo Copying $(PRIVATE_SOURCE_FILE)
    310 	$(hide) $(ACP) -fp $(PRIVATE_SOURCE_FILE) $@
    311 ALL_MODULES.$(LOCAL_MODULE).STUBS := $(full_classes_stubs_jar)
    312 
    313 # The layers file allows you to enforce a layering between java packages.
    314 # Run build/tools/java-layers.py for more details.
    315 layers_file := $(addprefix $(LOCAL_PATH)/, $(LOCAL_JAVA_LAYERS_FILE))
    316 $(full_classes_compiled_jar): PRIVATE_JAVA_LAYERS_FILE := $(layers_file)
    317 $(full_classes_compiled_jar): PRIVATE_WARNINGS_ENABLE := $(LOCAL_WARNINGS_ENABLE)
    318 
    319 # Compile the java files to a .jar file.
    320 # This intentionally depends on java_sources, not all_java_sources.
    321 # Deps for generated source files must be handled separately,
    322 # via deps on the target that generates the sources.
    323 $(full_classes_compiled_jar): PRIVATE_JAVACFLAGS := $(LOCAL_JAVACFLAGS)
    324 $(full_classes_compiled_jar): PRIVATE_JAR_EXCLUDE_FILES := $(LOCAL_JAR_EXCLUDE_FILES)
    325 $(full_classes_compiled_jar): PRIVATE_JAR_PACKAGES := $(LOCAL_JAR_PACKAGES)
    326 $(full_classes_compiled_jar): PRIVATE_DONT_DELETE_JAR_META_INF := $(LOCAL_DONT_DELETE_JAR_META_INF)
    327 $(full_classes_compiled_jar): $(java_sources) $(java_resource_sources) $(full_java_lib_deps) \
    328         $(jar_manifest_file) $(layers_file) $(RenderScript_file_stamp) \
    329         $(proto_java_sources_file_stamp) $(LOCAL_ADDITIONAL_DEPENDENCIES)
    330 	$(transform-java-to-classes.jar)
    331 
    332 $(full_classes_compiled_jar): PRIVATE_JAVAC_DEBUG_FLAGS := -g
    333 
    334 # Run jarjar if necessary, otherwise just copy the file.
    335 ifneq ($(strip $(LOCAL_JARJAR_RULES)),)
    336 $(full_classes_jarjar_jar): PRIVATE_JARJAR_RULES := $(LOCAL_JARJAR_RULES)
    337 $(full_classes_jarjar_jar): $(full_classes_compiled_jar) $(LOCAL_JARJAR_RULES) | $(JARJAR)
    338 	@echo JarJar: $@
    339 	$(hide) java -jar $(JARJAR) process $(PRIVATE_JARJAR_RULES) $< $@
    340 else
    341 $(full_classes_jarjar_jar): $(full_classes_compiled_jar) | $(ACP)
    342 	@echo Copying: $@
    343 	$(hide) $(ACP) -fp $< $@
    344 endif
    345 
    346 ifeq ($(LOCAL_EMMA_INSTRUMENT),true)
    347 $(full_classes_emma_jar): PRIVATE_EMMA_COVERAGE_FILE := $(intermediates.COMMON)/coverage.em
    348 $(full_classes_emma_jar): PRIVATE_EMMA_INTERMEDIATES_DIR := $(emma_intermediates_dir)
    349 # module level coverage filter can be defined using LOCAL_EMMA_COVERAGE_FILTER
    350 # in Android.mk
    351 ifdef LOCAL_EMMA_COVERAGE_FILTER
    352 $(full_classes_emma_jar): PRIVATE_EMMA_COVERAGE_FILTER := $(LOCAL_EMMA_COVERAGE_FILTER)
    353 else
    354 # by default, avoid applying emma instrumentation onto emma classes itself,
    355 # otherwise there will be exceptions thrown
    356 $(full_classes_emma_jar): PRIVATE_EMMA_COVERAGE_FILTER := *,-emma,-emmarun,-com.vladium.*
    357 endif
    358 # this rule will generate both $(PRIVATE_EMMA_COVERAGE_FILE) and
    359 # $(full_classes_emma_jar)
    360 $(full_classes_emma_jar): $(full_classes_jarjar_jar) | $(EMMA_JAR)
    361 	$(transform-classes.jar-to-emma)
    362 
    363 else
    364 $(full_classes_emma_jar): $(full_classes_jarjar_jar) | $(ACP)
    365 	@echo Copying: $@
    366 	$(copy-file-to-target)
    367 endif
    368 
    369 # Keep a copy of the jar just before proguard processing.
    370 $(full_classes_jar): $(full_classes_emma_jar) | $(ACP)
    371 	@echo Copying: $@
    372 	$(hide) $(ACP) -fp $< $@
    373 
    374 # Run proguard if necessary, otherwise just copy the file.
    375 ifdef LOCAL_PROGUARD_ENABLED
    376 ifneq ($(filter-out full custom nosystem obfuscation optimization,$(LOCAL_PROGUARD_ENABLED)),)
    377     $(warning while processing: $(LOCAL_MODULE))
    378     $(error invalid value for LOCAL_PROGUARD_ENABLED: $(LOCAL_PROGUARD_ENABLED))
    379 endif
    380 proguard_dictionary := $(intermediates.COMMON)/proguard_dictionary
    381 proguard_flags := $(addprefix -libraryjars ,$(full_shared_java_libs)) \
    382                   -forceprocessing \
    383                   -printmapping $(proguard_dictionary)
    384 
    385 ifeq ($(filter nosystem,$(LOCAL_PROGUARD_ENABLED)),)
    386 proguard_flags += -include $(BUILD_SYSTEM)/proguard.flags
    387 ifeq ($(LOCAL_EMMA_INSTRUMENT),true)
    388 proguard_flags += -include $(BUILD_SYSTEM)/proguard.emma.flags
    389 endif
    390 # If this is a test package, add proguard keep flags for tests.
    391 ifneq ($(LOCAL_INSTRUMENTATION_FOR)$(filter tests,$(LOCAL_MODULE_TAGS)),)
    392 proguard_flags += -include $(BUILD_SYSTEM)/proguard_tests.flags
    393 endif # test package
    394 ifeq ($(filter obfuscation,$(LOCAL_PROGUARD_ENABLED)),)
    395 # By default no obfuscation
    396 proguard_flags += -dontobfuscate
    397 endif  # No obfuscation
    398 ifeq ($(filter optimization,$(LOCAL_PROGUARD_ENABLED)),)
    399 # By default no optimization
    400 proguard_flags += -dontoptimize
    401 endif  # No optimization
    402 
    403 ifdef LOCAL_INSTRUMENTATION_FOR
    404 ifeq ($(filter obfuscation,$(LOCAL_PROGUARD_ENABLED)),)
    405 # If no obfuscation, link in the instrmented package's classes.jar as a library.
    406 # link_instr_classes_jar is defined in base_rule.mk
    407 proguard_flags += -libraryjars $(link_instr_classes_jar)
    408 else # obfuscation
    409 # If obfuscation is enabled, the main app must be obfuscated too.
    410 # We need to run obfuscation using the main app's dictionary,
    411 # and treat the main app's class.jar as injars instead of libraryjars.
    412 proguard_flags := -injars  $(link_instr_classes_jar) \
    413     -outjars $(intermediates.COMMON)/proguard.$(LOCAL_INSTRUMENTATION_FOR).jar \
    414     -include $(link_instr_intermediates_dir.COMMON)/proguard_options \
    415     -applymapping $(link_instr_intermediates_dir.COMMON)/proguard_dictionary \
    416     -verbose \
    417     $(proguard_flags)
    418 
    419 # Sometimes (test + main app) uses different keep rules from the main app -
    420 # apply the main app's dictionary anyway.
    421 proguard_flags += -ignorewarnings
    422 
    423 # Make sure we run Proguard on the main app first
    424 $(full_classes_proguard_jar) : $(link_instr_intermediates_dir.COMMON)/proguard.classes.jar
    425 
    426 endif # no obfuscation
    427 endif # LOCAL_INSTRUMENTATION_FOR
    428 endif  # LOCAL_PROGUARD_ENABLED is not nosystem
    429 
    430 proguard_flag_files := $(addprefix $(LOCAL_PATH)/, $(LOCAL_PROGUARD_FLAG_FILES))
    431 LOCAL_PROGUARD_FLAGS += $(addprefix -include , $(proguard_flag_files))
    432 
    433 $(full_classes_proguard_jar): PRIVATE_PROGUARD_FLAGS := $(proguard_flags) $(LOCAL_PROGUARD_FLAGS)
    434 $(full_classes_proguard_jar) : $(full_classes_jar) $(proguard_flag_files) | $(ACP) $(PROGUARD)
    435 	$(call transform-jar-to-proguard)
    436 
    437 else  # LOCAL_PROGUARD_ENABLED not defined
    438 $(full_classes_proguard_jar) : $(full_classes_jar)
    439 	@echo Copying: $@
    440 	$(hide) $(ACP) -fp $< $@
    441 
    442 endif # LOCAL_PROGUARD_ENABLED defined
    443 
    444 
    445 # Override PRIVATE_INTERMEDIATES_DIR so that install-dex-debug
    446 # will work even when intermediates != intermediates.COMMON.
    447 $(built_dex_intermediate): PRIVATE_INTERMEDIATES_DIR := $(intermediates.COMMON)
    448 $(built_dex_intermediate): PRIVATE_DX_FLAGS := $(LOCAL_DX_FLAGS)
    449 # If you instrument class files that have local variable debug information in
    450 # them emma does not correctly maintain the local variable table.
    451 # This will cause an error when you try to convert the class files for Android.
    452 # The workaround here is to build different dex file here based on emma switch
    453 # then later copy into classes.dex. When emma is on, dx is run with --no-locals
    454 # option to remove local variable information
    455 ifeq ($(LOCAL_EMMA_INSTRUMENT),true)
    456 $(built_dex_intermediate): PRIVATE_DX_FLAGS += --no-locals
    457 endif
    458 $(built_dex_intermediate): $(full_classes_proguard_jar) $(DX)
    459 	$(transform-classes.jar-to-dex)
    460 $(built_dex): $(built_dex_intermediate) | $(ACP)
    461 	@echo Copying: $@
    462 	$(hide) $(ACP) -fp $< $@
    463 ifneq ($(GENERATE_DEX_DEBUG),)
    464 	$(install-dex-debug)
    465 endif
    466 
    467 findbugs_xml := $(intermediates.COMMON)/findbugs.xml
    468 $(findbugs_xml) : PRIVATE_JAR_FILE := $(full_classes_jar)
    469 $(findbugs_xml) : PRIVATE_AUXCLASSPATH := $(addprefix -auxclasspath ,$(strip \
    470 								$(call normalize-path-list,$(filter %.jar,\
    471 										$(full_java_libs)))))
    472 # We can't depend directly on full_classes_jar because the PRIVATE_
    473 # vars won't be set up correctly.
    474 $(findbugs_xml) : $(LOCAL_BUILT_MODULE)
    475 	@echo Findbugs: $@
    476 	$(hide) $(FINDBUGS) -textui -effort:min -xml:withMessages \
    477 		$(PRIVATE_AUXCLASSPATH) \
    478 		$(PRIVATE_JAR_FILE) \
    479 		> $@
    480 
    481 ALL_FINDBUGS_FILES += $(findbugs_xml)
    482 
    483 findbugs_html := $(PRODUCT_OUT)/findbugs/$(LOCAL_MODULE).html
    484 $(findbugs_html) : PRIVATE_XML_FILE := $(findbugs_xml)
    485 $(LOCAL_MODULE)-findbugs : $(findbugs_html)
    486 $(findbugs_html) : $(findbugs_xml)
    487 	@mkdir -p $(dir $@)
    488 	@echo ConvertXmlToText: $@
    489 	$(hide) prebuilt/common/findbugs/bin/convertXmlToText -html:fancy.xsl $(PRIVATE_XML_FILE) \
    490 	> $@
    491 
    492 $(LOCAL_MODULE)-findbugs : $(findbugs_html)
    493 
    494 endif  # full_classes_jar is defined
    495