summaryrefslogtreecommitdiffstats
path: root/camera2/utils/utils.mk
diff options
context:
space:
mode:
authorSol Boucher <solb@google.com>2014-07-31 15:46:03 +0000
committerAndroid (Google) Code Review <android-gerrit@google.com>2014-07-29 21:36:00 +0000
commitd4e5286bb4145e0371b783158fc8411565429c9b (patch)
tree7ae90e2fb07c9656dc8d27a62938f216f1b22243 /camera2/utils/utils.mk
parent15773a64b42023e31e2aade23ae44273862a9c04 (diff)
parent8ba391e3f88936557ad6d44bbef32cb08f4ca310 (diff)
downloadandroid_frameworks_ex-d4e5286bb4145e0371b783158fc8411565429c9b.tar.gz
android_frameworks_ex-d4e5286bb4145e0371b783158fc8411565429c9b.tar.bz2
android_frameworks_ex-d4e5286bb4145e0371b783158fc8411565429c9b.zip
Merge "Create new com.android.ex.camera2.utils package" into lmp-dev
Diffstat (limited to 'camera2/utils/utils.mk')
-rw-r--r--camera2/utils/utils.mk23
1 files changed, 23 insertions, 0 deletions
diff --git a/camera2/utils/utils.mk b/camera2/utils/utils.mk
new file mode 100644
index 0000000..a193582
--- /dev/null
+++ b/camera2/utils/utils.mk
@@ -0,0 +1,23 @@
+# Copyright 2014 The Android Open Source Project
+#
+# Licensed under the Apache License, Version 2.0 (the "License");
+# you may not use this file except in compliance with the License.
+# You may obtain a copy of the License at
+#
+# http://www.apache.org/licenses/LICENSE-2.0
+#
+# Unless required by applicable law or agreed to in writing, software
+# distributed under the License is distributed on an "AS IS" BASIS,
+# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+# See the License for the specific language governing permissions and
+# limitations under the License.
+
+LOCAL_PATH := $(call my-dir)
+include $(CLEAR_VARS)
+
+LOCAL_MODULE := android-ex-camera2-utils
+LOCAL_MODULE_TAGS := optional
+LOCAL_SDK_VERSION := current
+LOCAL_SRC_FILES := $(call all-java-files-under, src)
+
+include $(BUILD_STATIC_JAVA_LIBRARY)