1# 2# Copyright (C) 2008 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) 17include $(CLEAR_VARS) 18 19LOCAL_SRC_FILES := $(call all-java-files-under, src) 20LOCAL_JAVA_RESOURCE_DIRS := src 21 22LOCAL_JAR_MANIFEST := manifest.txt 23 24# IMPORTANT: if you add a new dependency here, please make sure 25# to also check the following files: 26# sdkmanager/sdklib/manifest.txt 27# sdkmanager/app/etc/android.bat 28LOCAL_JAVA_LIBRARIES := \ 29 androidprefs \ 30 common \ 31 mkidentity-prebuilt \ 32 commons-compress-1.0 \ 33 httpclient-4.1.1 \ 34 httpcore-4.1 \ 35 httpmime-4.1.1 \ 36 commons-logging-1.1.1 \ 37 commons-codec-1.4 38 39LOCAL_MODULE := sdklib 40 41include $(BUILD_HOST_JAVA_LIBRARY) 42 43 44# Build all sub-directories 45include $(call all-makefiles-under,$(LOCAL_PATH)) 46