Home | History | Annotate | Download | only in interfaces
      1 #
      2 # Copyright (C) 2017 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 #
     16 LOCAL_PATH := $(call my-dir)
     17 
     18 include $(CLEAR_VARS)
     19 LOCAL_MODULE := app-helpers-common-interfaces
     20 LOCAL_JAVA_LIBRARIES := ub-uiautomator
     21 LOCAL_STATIC_JAVA_LIBRARIES := app-helpers-core
     22 LOCAL_SRC_FILES := $(call all-java-files-under, common)
     23 LOCAL_SDK_VERSION := current
     24 
     25 include $(BUILD_STATIC_JAVA_LIBRARY)
     26 
     27 ######################################
     28 
     29 include $(CLEAR_VARS)
     30 LOCAL_MODULE := app-helpers-auto-interfaces
     31 LOCAL_JAVA_LIBRARIES := ub-uiautomator app-helpers-core
     32 LOCAL_STATIC_JAVA_LIBRARIES := app-helpers-common-interfaces
     33 LOCAL_SRC_FILES := $(call all-java-files-under, auto)
     34 LOCAL_SDK_VERSION := current
     35 
     36 include $(BUILD_STATIC_JAVA_LIBRARY)
     37 
     38 ######################################
     39 
     40 include $(CLEAR_VARS)
     41 LOCAL_MODULE := app-helpers-clockwork-interfaces
     42 LOCAL_JAVA_LIBRARIES := ub-uiautomator app-helpers-core
     43 LOCAL_STATIC_JAVA_LIBRARIES := app-helpers-common-interfaces
     44 LOCAL_SRC_FILES := $(call all-java-files-under, clockwork)
     45 LOCAL_SDK_VERSION := current
     46 
     47 include $(BUILD_STATIC_JAVA_LIBRARY)
     48 
     49 ######################################
     50 
     51 include $(CLEAR_VARS)
     52 LOCAL_MODULE := app-helpers-handheld-interfaces
     53 LOCAL_JAVA_LIBRARIES := ub-uiautomator app-helpers-core
     54 LOCAL_STATIC_JAVA_LIBRARIES := app-helpers-common-interfaces
     55 LOCAL_SRC_FILES := $(call all-java-files-under, handheld)
     56 LOCAL_SDK_VERSION := current
     57 
     58 include $(BUILD_STATIC_JAVA_LIBRARY)
     59 
     60 ######################################
     61 
     62 include $(CLEAR_VARS)
     63 LOCAL_MODULE := app-helpers-tv-interfaces
     64 LOCAL_JAVA_LIBRARIES := ub-uiautomator app-helpers-core launcher-helper-lib
     65 LOCAL_STATIC_JAVA_LIBRARIES := app-helpers-common-interfaces dpad-util
     66 LOCAL_SRC_FILES := $(call all-java-files-under, tv)
     67 LOCAL_SDK_VERSION := current
     68 
     69 include $(BUILD_STATIC_JAVA_LIBRARY)
     70