blob: 0a9a0b88e443b8880b2136915b1ce635faf43d31 [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
Kenny Root58162772013-09-16 13:58:19 -070018#
19# Subprojects with separate makefiles
20#
21
Kenny Root6c28cd22013-10-01 17:26:51 -070022subdirs := benchmarks
Kenny Root58162772013-09-16 13:58:19 -070023subdir_makefiles := $(call all-named-subdir-makefiles,$(subdirs))
The Android Open Source Projectadc854b2009-03-03 19:28:47 -080024
Dan Bornstein6ac43c22009-10-24 15:33:49 -070025#
26# Include the definitions to build the Java code.
27#
The Android Open Source Projectadc854b2009-03-03 19:28:47 -080028
Dan Bornstein6ac43c22009-10-24 15:33:49 -070029include $(LOCAL_PATH)/JavaLibrary.mk
The Android Open Source Projectadc854b2009-03-03 19:28:47 -080030
Dan Bornstein6ac43c22009-10-24 15:33:49 -070031#
32# Include the definitions to build the native code.
33#
34
35include $(LOCAL_PATH)/NativeCode.mk
Jean-Baptiste Queru6e1c2a92010-04-30 10:13:35 -070036
Brian Carlstrom347b2a62011-04-26 11:34:16 -070037#
38# Include the definitions for the Certificate Authority (CA) certificates
39#
40
41include $(LOCAL_PATH)/CaCerts.mk
Jean-Baptiste Queru6e1c2a92010-04-30 10:13:35 -070042
43#
Elliott Hughesc5cd6e82012-10-18 18:13:10 -070044# Disable test modules if LIBCORE_SKIP_TESTS environment variable is set.
Brian Carlstromf50f4482010-06-24 09:26:28 -070045#
46
47ifneq ($(LIBCORE_SKIP_TESTS),)
48$(info ********************************************************************************)
49$(info * libcore tests are skipped because environment variable LIBCORE_SKIP_TESTS=$(LIBCORE_SKIP_TESTS))
50$(info ********************************************************************************)
Brian Carlstromf50f4482010-06-24 09:26:28 -070051endif
Brian Carlstromd39b1d62011-03-06 23:15:39 -080052
53
54#
55# "m dalvik-host" for quick minimal host build
56#
57
58ifeq ($(WITH_HOST_DALVIK),true)
59 .PHONY: dalvik-host
Elliott Hughes293dd5b2011-05-17 11:28:51 -070060 dalvik-host: \
61 dalvik \
62 $(HOST_OUT)/bin/dalvikvm \
63 $(HOST_OUT)/bin/dexopt \
Elliott Hughes7cd67602012-05-03 17:21:04 -070064 $(HOST_OUT)/lib/libjavacore.so \
Brian Carlstrom547b3d82013-09-17 17:52:16 -070065 $(HOST_OUT)/lib/libjavacrypto.so \
Elliott Hughes3271b832011-07-17 16:15:41 -070066 $(HOST_OUT)/lib/libjavacoretests.so \
Elliott Hughes293dd5b2011-05-17 11:28:51 -070067 cacerts-host \
Elliott Hughes293dd5b2011-05-17 11:28:51 -070068 core-hostdex \
Brian Carlstrom3ca4ad72013-08-01 23:36:30 -070069 conscrypt-hostdex \
70 okhttp-hostdex \
Elliott Hughes293dd5b2011-05-17 11:28:51 -070071 bouncycastle-hostdex \
72 apache-xml-hostdex \
73 apache-harmony-tests-hostdex \
74 $(call intermediates-dir-for,JAVA_LIBRARIES,core-tests,,COMMON)/classes.jar
Brian Carlstromd39b1d62011-03-06 23:15:39 -080075endif
Kenny Root58162772013-09-16 13:58:19 -070076
77include $(subdir_makefiles)