The Android Open Source Project | 0c90888 | 2009-03-03 19:32:16 -0800 | [diff] [blame] | 1 | LOCAL_PATH:= $(call my-dir) |
| 2 | include $(CLEAR_VARS) |
| 3 | |
Jean-Baptiste Queru | b699c4b | 2010-01-05 16:27:21 -0800 | [diff] [blame] | 4 | LOCAL_MODULE_TAGS := optional |
The Android Open Source Project | 0c90888 | 2009-03-03 19:32:16 -0800 | [diff] [blame] | 5 | |
Bjorn Bringert | 10d1cca | 2010-02-10 14:22:12 +0000 | [diff] [blame] | 6 | LOCAL_STATIC_JAVA_LIBRARIES := \ |
John Reck | 4155485 | 2010-12-01 12:53:37 -0800 | [diff] [blame] | 7 | android-common \ |
| 8 | guava |
Ramanan Rajeswaran | f447f26 | 2009-03-24 20:40:12 -0700 | [diff] [blame] | 9 | |
kristianm | 2e27252 | 2010-01-14 17:14:07 -0800 | [diff] [blame] | 10 | LOCAL_SRC_FILES := \ |
Andrei Popescu | 606e939 | 2010-02-09 16:59:58 +0000 | [diff] [blame] | 11 | $(call all-java-files-under, src) \ |
kristianm | 2e27252 | 2010-01-14 17:14:07 -0800 | [diff] [blame] | 12 | src/com/android/browser/EventLogTags.logtags |
The Android Open Source Project | 0c90888 | 2009-03-03 19:32:16 -0800 | [diff] [blame] | 13 | |
| 14 | LOCAL_PACKAGE_NAME := Browser |
| 15 | |
Ying Wang | 86cc143 | 2010-09-30 13:22:52 -0700 | [diff] [blame] | 16 | LOCAL_PROGUARD_FLAG_FILES := proguard.flags |
Jeff Hamilton | 462b8e8 | 2010-09-23 14:33:43 -0500 | [diff] [blame] | 17 | |
Guang Zhu | 6c6d6c7 | 2010-06-23 15:18:32 -0700 | [diff] [blame] | 18 | LOCAL_EMMA_COVERAGE_FILTER := *,-com.android.common.* |
| 19 | |
Ben Murdoch | 31a35e3 | 2011-03-01 12:05:22 +0000 | [diff] [blame^] | 20 | # We need the sound recorder for the Media Capture API. |
| 21 | LOCAL_REQUIRED_MODULES := SoundRecorder |
| 22 | |
The Android Open Source Project | 0c90888 | 2009-03-03 19:32:16 -0800 | [diff] [blame] | 23 | include $(BUILD_PACKAGE) |
Brett Chabot | 30ab9ad | 2009-06-05 11:21:18 -0700 | [diff] [blame] | 24 | |
| 25 | # additionally, build tests in sub-folders in a separate .apk |
| 26 | include $(call all-makefiles-under,$(LOCAL_PATH)) |