blob: 053240294019ebab33265e5bce078b2a372c9abf [file] [log] [blame]
Elliott Hughesc3d30bf2011-01-07 16:24:47 -08001# -*- mode: makefile -*-
Dan Bornstein6ac43c22009-10-24 15:33:49 -07002# Copyright (C) 2009 The Android Open Source Project
The Android Open Source Projectadc854b2009-03-03 19:28:47 -08003#
Dan Bornstein6ac43c22009-10-24 15:33:49 -07004# 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.
The Android Open Source Projectadc854b2009-03-03 19:28:47 -080015
Dan Bornstein6ac43c22009-10-24 15:33:49 -070016LOCAL_PATH := $(call my-dir)
The Android Open Source Projectadc854b2009-03-03 19:28:47 -080017
The Android Open Source Projectadc854b2009-03-03 19:28:47 -080018
Dan Bornstein6ac43c22009-10-24 15:33:49 -070019#
20# Include the definitions to build the Java code.
21#
The Android Open Source Projectadc854b2009-03-03 19:28:47 -080022
Dan Bornstein6ac43c22009-10-24 15:33:49 -070023include $(LOCAL_PATH)/JavaLibrary.mk
The Android Open Source Projectadc854b2009-03-03 19:28:47 -080024
Dan Bornstein6ac43c22009-10-24 15:33:49 -070025
26#
27# Include the definitions to build the native code.
28#
29
30include $(LOCAL_PATH)/NativeCode.mk
Jean-Baptiste Queru6e1c2a92010-04-30 10:13:35 -070031
Brian Carlstrom347b2a62011-04-26 11:34:16 -070032#
33# Include the definitions for the Certificate Authority (CA) certificates
34#
35
36include $(LOCAL_PATH)/CaCerts.mk
Jean-Baptiste Queru6e1c2a92010-04-30 10:13:35 -070037
38#
Brian Carlstromf50f4482010-06-24 09:26:28 -070039# Disable test modules if LIBCORE_SKIP_TESTS envar is set
40#
41
42ifneq ($(LIBCORE_SKIP_TESTS),)
43$(info ********************************************************************************)
44$(info * libcore tests are skipped because environment variable LIBCORE_SKIP_TESTS=$(LIBCORE_SKIP_TESTS))
45$(info ********************************************************************************)
46ALL_MODULE_TAGS := $(filter-out tests,$(ALL_MODULE_TAGS))
47ALL_MODULES := $(filter-out $(ALL_MODULE_NAME_TAGS.tests),$(ALL_MODULES))
48endif
Brian Carlstromd39b1d62011-03-06 23:15:39 -080049
50
51#
52# "m dalvik-host" for quick minimal host build
53#
54
55ifeq ($(WITH_HOST_DALVIK),true)
56 .PHONY: dalvik-host
Elliott Hughes293dd5b2011-05-17 11:28:51 -070057 dalvik-host: \
58 dalvik \
59 $(HOST_OUT)/bin/dalvikvm \
60 $(HOST_OUT)/bin/dexopt \
Elliott Hughes7cd67602012-05-03 17:21:04 -070061 $(HOST_OUT)/lib/libjavacore.so \
Elliott Hughes293dd5b2011-05-17 11:28:51 -070062 cacerts-host \
63 $(HOST_OUT)/usr/share/zoneinfo/zoneinfo.dat \
64 $(HOST_OUT)/usr/share/zoneinfo/zoneinfo.idx \
65 $(HOST_OUT)/usr/share/zoneinfo/zoneinfo.version \
66 core-hostdex \
67 bouncycastle-hostdex \
68 apache-xml-hostdex \
69 apache-harmony-tests-hostdex \
70 $(call intermediates-dir-for,JAVA_LIBRARIES,core-tests,,COMMON)/classes.jar
Brian Carlstromd39b1d62011-03-06 23:15:39 -080071endif