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