• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1LOCAL_PATH := $(call my-dir)
2include $(CLEAR_VARS)
3
4# This will build the client static library for the Google Services Framework
5LOCAL_MODULE := oauth
6
7# Includes all the java files, and explicitly declares any aidl files
8LOCAL_SRC_FILES := \
9   $(call all-java-files-under, net)
10
11LOCAL_SDK_VERSION := 8
12
13# Build the actual static library
14include $(BUILD_STATIC_JAVA_LIBRARY)
15