blob: 295f2c2c042636b064bcfca90f5b27ae7b1a9df9 [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
Ian Rogers3deabd22014-05-23 15:12:42 -070058.PHONY: dalvik-host
59dalvik-host: \
60 dalvik \
61 $(HOST_OUT)/bin/dalvikvm \
62 $(HOST_OUT)/bin/dexopt \
63 $(HOST_OUT)/lib/libjavacore.so \
64 $(HOST_OUT)/lib/libjavacrypto.so \
65 $(HOST_OUT)/lib/libjavacoretests.so \
66 cacerts-host \
67 core-hostdex \
68 conscrypt-hostdex \
69 okhttp-hostdex \
70 bouncycastle-hostdex \
71 apache-xml-hostdex \
72 apache-harmony-tests-hostdex \
73 $(call intermediates-dir-for,JAVA_LIBRARIES,core-tests,,COMMON)/classes.jar
Kenny Root58162772013-09-16 13:58:19 -070074
75include $(subdir_makefiles)