summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
Diffstat (limited to 'board_identity/src/app/Android.mk')
-rw-r--r--board_identity/src/app/Android.mk46
1 files changed, 0 insertions, 46 deletions
diff --git a/board_identity/src/app/Android.mk b/board_identity/src/app/Android.mk
deleted file mode 100644
index 0fa5dc9..0000000
--- a/board_identity/src/app/Android.mk
+++ /dev/null
@@ -1,46 +0,0 @@
1#
2# Copyright (C) 2011 The Android Open Source Project
3# Copyright (C) 2010-2012 Texas Instruments, Inc. All rights reserved.
4#
5# Licensed under the Apache License, Version 2.0 (the "License");
6# you may not use this file except in compliance with the License.
7# You may obtain a copy of the License at
8#
9# http://www.apache.org/licenses/LICENSE-2.0
10#
11# Unless required by applicable law or agreed to in writing, software
12# distributed under the License is distributed on an "AS IS" BASIS,
13# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
14# See the License for the specific language governing permissions and
15# limitations under the License.
16#
17
18
19ifeq ($(findstring omap, $(TARGET_BOARD_PLATFORM)),omap)
20ifeq ($(origin TARGET_BUILD_PDK),undefined)
21
22LOCAL_PATH:= $(call my-dir)
23include $(CLEAR_VARS)
24LOCAL_MODULE_TAGS := optional
25LOCAL_SHARED_LIBRARIES := libandroid_runtime
26LOCAL_JAVA_LIBRARIES := framework
27LOCAL_SRC_FILES := src/board_id/com/ti/Board_id_Activity.java \
28 src/board_id/com/ti/BoardIDService.java \
29 src/board_id/com/ti/IBoardIDService.aidl
30LOCAL_PACKAGE_NAME := Board_id
31LOCAL_CERTIFICATE := platform
32LOCAL_SDK_VERSION := current
33include $(BUILD_PACKAGE)
34
35include $(CLEAR_VARS)
36LOCAL_MODULE_TAGS := optional
37LOCAL_SRC_FILES := src/board_id/com/ti/BoardIDAgent.java \
38 src/board_id/com/ti/IBoardIDService.aidl
39LOCAL_MODULE := board_id.com.ti
40LOCAL_JNI_SHARED_LIBRARIES := libboard_idJNI
41LOCAL_CERTIFICATE := platform
42LOCAL_SDK_VERSION := current
43include $(BUILD_STATIC_JAVA_LIBRARY)
44
45endif
46endif