summaryrefslogtreecommitdiff
path: root/core/src/main/java/Android.mk
blob: 109698f7ec196ec50865bf6798a5c34f0887b7b6 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
LOCAL_PATH := $(call my-dir)
include $(CLEAR_VARS)

# This will build the client static library for the Google Services Framework
LOCAL_MODULE := oauth

# Includes all the java files, and explicitly declares any aidl files
LOCAL_SRC_FILES := \
   $(call all-java-files-under, net)

LOCAL_SDK_VERSION := 8

# Build the actual static library
include $(BUILD_STATIC_JAVA_LIBRARY)