Android.mk revision 98d2d60725cd85a0aa158168cf1426dfc7833582
1#
2# Copyright (C) 2012 The Android Open Source Project
3#
4# Licensed under the Apache License, Version 2.0 (the "License");
5# you may not use this file except in compliance with the License.
6# You may obtain a copy of the License at
7#
8#      http://www.apache.org/licenses/LICENSE-2.0
9#
10# Unless required by applicable law or agreed to in writing, software
11# distributed under the License is distributed on an "AS IS" BASIS,
12# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13# See the License for the specific language governing permissions and
14# limitations under the License.
15#
16LOCAL_PATH := $(call my-dir)
17
18okhttp_common_src_files := $(call all-java-files-under,okhttp/src/main/java)
19okhttp_common_src_files += $(call all-java-files-under,okio/src/main/java)
20okhttp_system_src_files := $(filter-out %/Platform.java, $(okhttp_common_src_files))
21okhttp_system_src_files += $(call all-java-files-under, android/main/java)
22
23okhttp_test_src_files := $(call all-java-files-under,okhttp-tests/src/test/java)
24okhttp_test_src_files += $(call all-java-files-under,mockwebserver/src/main/java)
25okhttp_test_src_files := $(filter-out mockwebserver/src/main/java/com/squareup/okhttp/internal/spdy/SpdyServer.java, $(okhttp_test_src_files))
26
27include $(CLEAR_VARS)
28LOCAL_MODULE := okhttp
29LOCAL_MODULE_TAGS := optional
30LOCAL_SRC_FILES := $(okhttp_system_src_files)
31LOCAL_JAVACFLAGS := -encoding UTF-8
32LOCAL_JARJAR_RULES := $(LOCAL_PATH)/jarjar-rules.txt
33LOCAL_JAVA_LIBRARIES := conscrypt core
34LOCAL_NO_STANDARD_LIBRARIES := true
35LOCAL_ADDITIONAL_DEPENDENCIES := $(LOCAL_PATH)/Android.mk
36include $(BUILD_JAVA_LIBRARY)
37
38# static version of okhttp for inclusion in apps targeting older releases
39include $(CLEAR_VARS)
40LOCAL_MODULE := okhttp-static
41LOCAL_MODULE_TAGS := optional
42LOCAL_SRC_FILES := $(okhttp_common_src_files)
43LOCAL_JAVACFLAGS := -encoding UTF-8
44LOCAL_JAVA_LIBRARIES := core
45LOCAL_NO_STANDARD_LIBRARIES := true
46LOCAL_ADDITIONAL_DEPENDENCIES := $(LOCAL_PATH)/Android.mk
47include $(BUILD_STATIC_JAVA_LIBRARY)
48
49# non-jarjar'd version of okhttp to compile the tests against
50include $(CLEAR_VARS)
51LOCAL_MODULE := okhttp-nojarjar
52LOCAL_MODULE_TAGS := optional
53LOCAL_SRC_FILES := $(okhttp_system_src_files)
54LOCAL_JAVACFLAGS := -encoding UTF-8
55LOCAL_JAVA_LIBRARIES := conscrypt core
56LOCAL_NO_STANDARD_LIBRARIES := true
57LOCAL_ADDITIONAL_DEPENDENCIES := $(LOCAL_PATH)/Android.mk
58include $(BUILD_STATIC_JAVA_LIBRARY)
59
60include $(CLEAR_VARS)
61LOCAL_MODULE := okhttp-tests-nojarjar
62LOCAL_MODULE_TAGS := optional
63LOCAL_SRC_FILES := $(okhttp_test_src_files)
64LOCAL_JAVACFLAGS := -encoding UTF-8
65LOCAL_JAVA_LIBRARIES := okhttp-nojarjar junit4-target bouncycastle-nojarjar
66LOCAL_NO_STANDARD_LIBRARIES := true
67LOCAL_ADDITIONAL_DEPENDENCIES := $(LOCAL_PATH)/Android.mk
68include $(BUILD_STATIC_JAVA_LIBRARY)
69
70ifeq ($(WITH_HOST_DALVIK),true)
71    include $(CLEAR_VARS)
72    LOCAL_MODULE := okhttp-hostdex
73    LOCAL_MODULE_TAGS := optional
74    LOCAL_SRC_FILES := $(okhttp_system_src_files)
75    LOCAL_JAVACFLAGS := -encoding UTF-8
76    LOCAL_JARJAR_RULES := $(LOCAL_PATH)/jarjar-rules.txt
77    LOCAL_JAVA_LIBRARIES := conscrypt-hostdex
78    LOCAL_ADDITIONAL_DEPENDENCIES := $(LOCAL_PATH)/Android.mk
79    include $(BUILD_HOST_DALVIK_JAVA_LIBRARY)
80endif
81