blob: 3fc14a4024296cbab535e92359d044297f936468 [file] [log] [blame]
Carl Shapiro7b216702011-06-17 15:09:26 -07001#
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
17LOCAL_PATH := $(call my-dir)
18include $(CLEAR_VARS)
19
20LOCAL_MODULE := libart
21LOCAL_MODULE_TAGS := optional
22
Carl Shapiroa5d5cfd2011-06-21 12:46:59 -070023LIBART_TARGET_ARCH := $(HOST_ARCH)
Carl Shapiro9bf84fd2011-06-17 17:05:25 -070024include $(LOCAL_PATH)/Android.common.mk
25LOCAL_SRC_FILES := $(LIBART_LOCAL_SRC_FILES)
Carl Shapiro7b216702011-06-17 15:09:26 -070026
Carl Shapiro12eb78e2011-06-24 14:51:06 -070027LOCAL_C_INCLUDES := \
Carl Shapiro1fb86202011-06-27 17:43:13 -070028 dalvik
Carl Shapiro7b216702011-06-17 15:09:26 -070029
Carl Shapiro12eb78e2011-06-24 14:51:06 -070030LOCAL_WHOLE_STATIC_LIBRARIES := \
Carl Shapiro7b216702011-06-17 15:09:26 -070031 libcutils \
32 libdex \
33 liblog \
34 libz
35
36LOCAL_LDLIBS := \
37 -ldl \
38 -lpthread \
39 -lrt
40
41include $(BUILD_HOST_SHARED_LIBRARY)