• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1#
2# Copyright (C) 2011 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#
17
18LOCAL_PATH := $(call my-dir)
19include $(LOCAL_PATH)/../libbcc-config.mk
20
21
22#=====================================================================
23# Device Static Library: libbccHelper
24#=====================================================================
25
26include $(CLEAR_VARS)
27
28LOCAL_MODULE := libbccHelper
29LOCAL_MODULE_TAGS := optional
30LOCAL_MODULE_CLASS := STATIC_LIBRARIES
31
32LOCAL_CFLAGS += $(libbcc_CFLAGS)
33LOCAL_C_INCLUDES := $(libbcc_C_INCLUDES)
34
35LOCAL_SRC_FILES := sha1.c
36
37include $(LIBBCC_ROOT_PATH)/libbcc-gen-config-from-mk.mk
38include $(LLVM_ROOT_PATH)/llvm-device-build.mk
39include $(BUILD_STATIC_LIBRARY)
40
41
42#=====================================================================
43# Host Static Library: libbccHelper
44#=====================================================================
45
46include $(CLEAR_VARS)
47
48LOCAL_MODULE := libbccHelper
49LOCAL_MODULE_TAGS := optional
50LOCAL_MODULE_CLASS := STATIC_LIBRARIES
51LOCAL_IS_HOST_MODULE := true
52
53LOCAL_CFLAGS += $(libbcc_CFLAGS)
54LOCAL_C_INCLUDES := $(libbcc_C_INCLUDES)
55
56LOCAL_SRC_FILES := \
57  DebugHelper.c \
58  sha1.c
59
60include $(LIBBCC_ROOT_PATH)/libbcc-gen-config-from-mk.mk
61include $(LLVM_ROOT_PATH)/llvm-host-build.mk
62include $(BUILD_HOST_STATIC_LIBRARY)
63