Elliott Hughes | c3d30bf | 2011-01-07 16:24:47 -0800 | [diff] [blame] | 1 | # -*- mode: makefile -*- |
Dan Bornstein | 6ac43c2 | 2009-10-24 15:33:49 -0700 | [diff] [blame] | 2 | # Copyright (C) 2009 The Android Open Source Project |
The Android Open Source Project | adc854b | 2009-03-03 19:28:47 -0800 | [diff] [blame] | 3 | # |
Dan Bornstein | 6ac43c2 | 2009-10-24 15:33:49 -0700 | [diff] [blame] | 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. |
The Android Open Source Project | adc854b | 2009-03-03 19:28:47 -0800 | [diff] [blame] | 15 | |
Dan Bornstein | 6ac43c2 | 2009-10-24 15:33:49 -0700 | [diff] [blame] | 16 | LOCAL_PATH := $(call my-dir) |
The Android Open Source Project | adc854b | 2009-03-03 19:28:47 -0800 | [diff] [blame] | 17 | |
Kenny Root | 5816277 | 2013-09-16 13:58:19 -0700 | [diff] [blame] | 18 | # |
| 19 | # Subprojects with separate makefiles |
| 20 | # |
| 21 | |
Kenny Root | 6c28cd2 | 2013-10-01 17:26:51 -0700 | [diff] [blame] | 22 | subdirs := benchmarks |
Kenny Root | 5816277 | 2013-09-16 13:58:19 -0700 | [diff] [blame] | 23 | subdir_makefiles := $(call all-named-subdir-makefiles,$(subdirs)) |
The Android Open Source Project | adc854b | 2009-03-03 19:28:47 -0800 | [diff] [blame] | 24 | |
Dan Bornstein | 6ac43c2 | 2009-10-24 15:33:49 -0700 | [diff] [blame] | 25 | # |
| 26 | # Include the definitions to build the Java code. |
| 27 | # |
The Android Open Source Project | adc854b | 2009-03-03 19:28:47 -0800 | [diff] [blame] | 28 | |
Dan Bornstein | 6ac43c2 | 2009-10-24 15:33:49 -0700 | [diff] [blame] | 29 | include $(LOCAL_PATH)/JavaLibrary.mk |
The Android Open Source Project | adc854b | 2009-03-03 19:28:47 -0800 | [diff] [blame] | 30 | |
Dan Bornstein | 6ac43c2 | 2009-10-24 15:33:49 -0700 | [diff] [blame] | 31 | # |
| 32 | # Include the definitions to build the native code. |
| 33 | # |
| 34 | |
| 35 | include $(LOCAL_PATH)/NativeCode.mk |
Jean-Baptiste Queru | 6e1c2a9 | 2010-04-30 10:13:35 -0700 | [diff] [blame] | 36 | |
Brian Carlstrom | 347b2a6 | 2011-04-26 11:34:16 -0700 | [diff] [blame] | 37 | # |
| 38 | # Include the definitions for the Certificate Authority (CA) certificates |
| 39 | # |
| 40 | |
| 41 | include $(LOCAL_PATH)/CaCerts.mk |
Jean-Baptiste Queru | 6e1c2a9 | 2010-04-30 10:13:35 -0700 | [diff] [blame] | 42 | |
| 43 | # |
Elliott Hughes | c5cd6e8 | 2012-10-18 18:13:10 -0700 | [diff] [blame] | 44 | # Disable test modules if LIBCORE_SKIP_TESTS environment variable is set. |
Brian Carlstrom | f50f448 | 2010-06-24 09:26:28 -0700 | [diff] [blame] | 45 | # |
| 46 | |
| 47 | ifneq ($(LIBCORE_SKIP_TESTS),) |
| 48 | $(info ********************************************************************************) |
| 49 | $(info * libcore tests are skipped because environment variable LIBCORE_SKIP_TESTS=$(LIBCORE_SKIP_TESTS)) |
| 50 | $(info ********************************************************************************) |
Brian Carlstrom | f50f448 | 2010-06-24 09:26:28 -0700 | [diff] [blame] | 51 | endif |
Brian Carlstrom | d39b1d6 | 2011-03-06 23:15:39 -0800 | [diff] [blame] | 52 | |
| 53 | |
| 54 | # |
| 55 | # "m dalvik-host" for quick minimal host build |
| 56 | # |
| 57 | |
| 58 | ifeq ($(WITH_HOST_DALVIK),true) |
| 59 | .PHONY: dalvik-host |
Elliott Hughes | 293dd5b | 2011-05-17 11:28:51 -0700 | [diff] [blame] | 60 | dalvik-host: \ |
| 61 | dalvik \ |
| 62 | $(HOST_OUT)/bin/dalvikvm \ |
| 63 | $(HOST_OUT)/bin/dexopt \ |
Elliott Hughes | 7cd6760 | 2012-05-03 17:21:04 -0700 | [diff] [blame] | 64 | $(HOST_OUT)/lib/libjavacore.so \ |
Brian Carlstrom | 547b3d8 | 2013-09-17 17:52:16 -0700 | [diff] [blame] | 65 | $(HOST_OUT)/lib/libjavacrypto.so \ |
Elliott Hughes | 3271b83 | 2011-07-17 16:15:41 -0700 | [diff] [blame] | 66 | $(HOST_OUT)/lib/libjavacoretests.so \ |
Elliott Hughes | 293dd5b | 2011-05-17 11:28:51 -0700 | [diff] [blame] | 67 | cacerts-host \ |
Elliott Hughes | 293dd5b | 2011-05-17 11:28:51 -0700 | [diff] [blame] | 68 | core-hostdex \ |
Brian Carlstrom | 3ca4ad7 | 2013-08-01 23:36:30 -0700 | [diff] [blame] | 69 | conscrypt-hostdex \ |
| 70 | okhttp-hostdex \ |
Elliott Hughes | 293dd5b | 2011-05-17 11:28:51 -0700 | [diff] [blame] | 71 | bouncycastle-hostdex \ |
| 72 | apache-xml-hostdex \ |
| 73 | apache-harmony-tests-hostdex \ |
| 74 | $(call intermediates-dir-for,JAVA_LIBRARIES,core-tests,,COMMON)/classes.jar |
Brian Carlstrom | d39b1d6 | 2011-03-06 23:15:39 -0800 | [diff] [blame] | 75 | endif |
Kenny Root | 5816277 | 2013-09-16 13:58:19 -0700 | [diff] [blame] | 76 | |
| 77 | include $(subdir_makefiles) |