blob: d68f654f47836aa081b28c4fcaebd785eec8ea6e [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
Pete Gillin19c70e92017-10-18 12:43:47 +010022subdirs := benchmarks tzdata ojluni tools/upstream metrictests
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#
Elliott Hughesc5cd6e82012-10-18 18:13:10 -070032# Disable test modules if LIBCORE_SKIP_TESTS environment variable is set.
Brian Carlstromf50f4482010-06-24 09:26:28 -070033#
34
35ifneq ($(LIBCORE_SKIP_TESTS),)
36$(info ********************************************************************************)
37$(info * libcore tests are skipped because environment variable LIBCORE_SKIP_TESTS=$(LIBCORE_SKIP_TESTS))
38$(info ********************************************************************************)
Brian Carlstromf50f4482010-06-24 09:26:28 -070039endif
Brian Carlstromd39b1d62011-03-06 23:15:39 -080040
Kenny Root58162772013-09-16 13:58:19 -070041include $(subdir_makefiles)