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) 2007 The Android Open Source Project |
| 3 | # |
| 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. |
| 15 | |
| 16 | # |
| 17 | # Definitions for building the native code needed for the core library. |
| 18 | # |
| 19 | |
| 20 | # |
| 21 | # Common definitions for host and target. |
| 22 | # |
| 23 | |
Dan Bornstein | 6ac43c2 | 2009-10-24 15:33:49 -0700 | [diff] [blame] | 24 | # These two definitions are used to help sanity check what's put in |
| 25 | # sub.mk. See, the "error" directives immediately below. |
| 26 | core_magic_local_target := ...//::default:://... |
| 27 | core_local_path := $(LOCAL_PATH) |
| 28 | |
| 29 | # Include a submakefile, resolve its source file locations, |
| 30 | # and stick them on core_src_files. The submakefiles are |
| 31 | # free to append to LOCAL_SRC_FILES, LOCAL_C_INCLUDES, |
| 32 | # LOCAL_SHARED_LIBRARIES, or LOCAL_STATIC_LIBRARIES, but nothing |
| 33 | # else. All other LOCAL_* variables will be ignored. |
| 34 | # |
| 35 | # $(1): directory containing the makefile to include |
| 36 | define include-core-native-dir |
| 37 | LOCAL_SRC_FILES := |
| 38 | include $(LOCAL_PATH)/$(1)/sub.mk |
| 39 | ifneq ($$(LOCAL_MODULE),$(core_magic_local_target)) |
| 40 | $$(error $(LOCAL_PATH)/$(1)/sub.mk should not include CLEAR_VARS \ |
| 41 | or define LOCAL_MODULE) |
| 42 | endif |
| 43 | ifneq ($$(LOCAL_PATH),$(core_local_path)) |
| 44 | $$(error $(LOCAL_PATH)/$(1)/sub.mk should not define LOCAL_PATH) |
| 45 | endif |
| 46 | core_src_files += $$(addprefix $(1)/,$$(LOCAL_SRC_FILES)) |
| 47 | LOCAL_SRC_FILES := |
| 48 | endef |
| 49 | |
Dan Bornstein | 6ac43c2 | 2009-10-24 15:33:49 -0700 | [diff] [blame] | 50 | # Set up the default state. Note: We use CLEAR_VARS here, even though |
| 51 | # we aren't quite defining a new rule yet, to make sure that the |
| 52 | # sub.mk files don't see anything stray from the last rule that was |
| 53 | # set up. |
Kenny Root | 6914efc | 2013-01-28 12:31:22 -0800 | [diff] [blame] | 54 | |
Dan Bornstein | 6ac43c2 | 2009-10-24 15:33:49 -0700 | [diff] [blame] | 55 | include $(CLEAR_VARS) |
| 56 | LOCAL_MODULE := $(core_magic_local_target) |
Elliott Hughes | 73d3e26 | 2012-08-28 17:56:09 -0700 | [diff] [blame] | 57 | LOCAL_ADDITIONAL_DEPENDENCIES := $(LOCAL_PATH)/NativeCode.mk |
Dan Bornstein | 6ac43c2 | 2009-10-24 15:33:49 -0700 | [diff] [blame] | 58 | core_src_files := |
| 59 | |
| 60 | # Include the sub.mk files. |
| 61 | $(foreach dir, \ |
Kenny Root | ba07db5 | 2013-08-29 13:40:35 -0700 | [diff] [blame] | 62 | dalvik/src/main/native luni/src/main/native, \ |
Dan Bornstein | 6ac43c2 | 2009-10-24 15:33:49 -0700 | [diff] [blame] | 63 | $(eval $(call include-core-native-dir,$(dir)))) |
| 64 | |
Elliott Hughes | 25fb6e5 | 2013-07-30 22:18:47 -0700 | [diff] [blame] | 65 | # Extract out the allowed LOCAL_* variables. |
| 66 | core_c_includes := libcore/include $(LOCAL_C_INCLUDES) |
| 67 | core_shared_libraries := $(LOCAL_SHARED_LIBRARIES) |
| 68 | core_static_libraries := $(LOCAL_STATIC_LIBRARIES) |
Paul Jensen | 3e58734 | 2014-05-12 23:40:42 -0400 | [diff] [blame] | 69 | core_cflags := $(LOCAL_CFLAGS) -Wall -Wextra -Werror |
Elliott Hughes | a04b5c3 | 2015-03-06 12:23:34 -0800 | [diff] [blame] | 70 | core_cppflags += -std=gnu++11 -DU_USING_ICU_NAMESPACE=0 |
Dan Bornstein | 6ac43c2 | 2009-10-24 15:33:49 -0700 | [diff] [blame] | 71 | |
Brian Carlstrom | 3042efc | 2013-05-01 22:18:57 -0700 | [diff] [blame] | 72 | core_test_files := \ |
Ian Rogers | a515759 | 2011-06-29 17:07:54 -0700 | [diff] [blame] | 73 | luni/src/test/native/dalvik_system_JniTest.cpp \ |
Narayan Kamath | a9b60a8 | 2015-09-02 13:26:54 +0100 | [diff] [blame] | 74 | luni/src/test/native/libcore_java_io_FileTest.cpp \ |
Brian Carlstrom | 3042efc | 2013-05-01 22:18:57 -0700 | [diff] [blame] | 75 | |
Dan Bornstein | 6ac43c2 | 2009-10-24 15:33:49 -0700 | [diff] [blame] | 76 | # |
| 77 | # Build for the target (device). |
| 78 | # |
| 79 | |
| 80 | include $(CLEAR_VARS) |
Elliott Hughes | 2f03cca | 2011-03-08 14:36:03 -0800 | [diff] [blame] | 81 | LOCAL_CFLAGS += $(core_cflags) |
Andy McFadden | 1f504c8 | 2012-01-20 14:13:31 -0800 | [diff] [blame] | 82 | LOCAL_CPPFLAGS += $(core_cppflags) |
Elliott Hughes | 79ffafe | 2013-07-30 15:42:28 -0700 | [diff] [blame] | 83 | LOCAL_SRC_FILES += $(core_src_files) |
| 84 | LOCAL_C_INCLUDES += $(core_c_includes) |
Elliott Hughes | 1bc030b | 2014-04-03 15:49:54 -0700 | [diff] [blame] | 85 | LOCAL_SHARED_LIBRARIES += $(core_shared_libraries) libcrypto libdl libexpat libicuuc libicui18n libnativehelper libz libutils |
Narayan Kamath | a9b386f | 2015-04-28 09:59:43 +0100 | [diff] [blame] | 86 | LOCAL_STATIC_LIBRARIES += $(core_static_libraries) libziparchive libbase |
Jesse Wilson | 53fbc0a | 2010-09-16 15:46:05 -0700 | [diff] [blame] | 87 | LOCAL_MODULE_TAGS := optional |
Dan Bornstein | 6ac43c2 | 2009-10-24 15:33:49 -0700 | [diff] [blame] | 88 | LOCAL_MODULE := libjavacore |
Elliott Hughes | 73d3e26 | 2012-08-28 17:56:09 -0700 | [diff] [blame] | 89 | LOCAL_ADDITIONAL_DEPENDENCIES := $(LOCAL_PATH)/NativeCode.mk |
Ian Rogers | b3aacde | 2014-11-04 15:21:13 -0800 | [diff] [blame] | 90 | LOCAL_CXX_STL := libc++ |
Elliott Hughes | 7cd6760 | 2012-05-03 17:21:04 -0700 | [diff] [blame] | 91 | include $(BUILD_SHARED_LIBRARY) |
Dan Bornstein | 6ac43c2 | 2009-10-24 15:33:49 -0700 | [diff] [blame] | 92 | |
Elliott Hughes | 79ffafe | 2013-07-30 15:42:28 -0700 | [diff] [blame] | 93 | # Test JNI library. |
Kenny Root | 6914efc | 2013-01-28 12:31:22 -0800 | [diff] [blame] | 94 | ifeq ($(LIBCORE_SKIP_TESTS),) |
Kenny Root | 6914efc | 2013-01-28 12:31:22 -0800 | [diff] [blame] | 95 | |
Elliott Hughes | 79ffafe | 2013-07-30 15:42:28 -0700 | [diff] [blame] | 96 | include $(CLEAR_VARS) |
Kenny Root | 6914efc | 2013-01-28 12:31:22 -0800 | [diff] [blame] | 97 | LOCAL_CFLAGS += $(core_cflags) |
| 98 | LOCAL_CPPFLAGS += $(core_cppflags) |
Elliott Hughes | 79ffafe | 2013-07-30 15:42:28 -0700 | [diff] [blame] | 99 | LOCAL_SRC_FILES += $(core_test_files) |
Elliott Hughes | fc0498f | 2014-12-15 15:25:34 -0800 | [diff] [blame] | 100 | LOCAL_C_INCLUDES += libcore/include |
Narayan Kamath | a9b60a8 | 2015-09-02 13:26:54 +0100 | [diff] [blame] | 101 | LOCAL_SHARED_LIBRARIES += libcrypto libnativehelper |
Kenny Root | 6914efc | 2013-01-28 12:31:22 -0800 | [diff] [blame] | 102 | LOCAL_MODULE_TAGS := optional |
Kenny Root | 5f1f97c | 2013-02-01 11:26:09 -0800 | [diff] [blame] | 103 | LOCAL_MODULE := libjavacoretests |
Kenny Root | 6914efc | 2013-01-28 12:31:22 -0800 | [diff] [blame] | 104 | LOCAL_ADDITIONAL_DEPENDENCIES := $(LOCAL_PATH)/NativeCode.mk |
Ian Rogers | b3aacde | 2014-11-04 15:21:13 -0800 | [diff] [blame] | 105 | LOCAL_CXX_STL := libc++ |
Kenny Root | 6914efc | 2013-01-28 12:31:22 -0800 | [diff] [blame] | 106 | include $(BUILD_SHARED_LIBRARY) |
Elliott Hughes | 79ffafe | 2013-07-30 15:42:28 -0700 | [diff] [blame] | 107 | |
Kenny Root | 6914efc | 2013-01-28 12:31:22 -0800 | [diff] [blame] | 108 | endif # LIBCORE_SKIP_TESTS |
| 109 | |
Christopher Ferris | 08d97ae | 2015-03-14 16:36:37 -0700 | [diff] [blame] | 110 | # Set of gtest unit tests. |
| 111 | include $(CLEAR_VARS) |
| 112 | LOCAL_CFLAGS += $(core_cflags) |
| 113 | LOCAL_CPPFLAGS += $(core_cppflags) |
| 114 | LOCAL_SRC_FILES += \ |
| 115 | luni/src/test/native/libcore_io_Memory_test.cpp \ |
| 116 | |
| 117 | LOCAL_C_INCLUDES += libcore/include |
| 118 | LOCAL_MODULE_TAGS := debug |
| 119 | LOCAL_MODULE := libjavacore-unit-tests |
| 120 | LOCAL_ADDITIONAL_DEPENDENCIES := $(LOCAL_PATH)/NativeCode.mk |
Evgenii Stepanov | be83c6b | 2015-06-11 15:09:54 -0700 | [diff] [blame] | 121 | LOCAL_SHARED_LIBRARIES := libnativehelper |
Christopher Ferris | 08d97ae | 2015-03-14 16:36:37 -0700 | [diff] [blame] | 122 | LOCAL_CXX_STL := libc++ |
| 123 | include $(BUILD_NATIVE_TEST) |
| 124 | |
| 125 | # Set of benchmarks for libjavacore functions. |
| 126 | include $(CLEAR_VARS) |
| 127 | LOCAL_CFLAGS += $(core_cflags) |
| 128 | LOCAL_CPPFLAGS += $(core_cppflags) |
| 129 | LOCAL_SRC_FILES += \ |
| 130 | luni/src/benchmark/native/libcore_io_Memory_bench.cpp \ |
| 131 | |
| 132 | LOCAL_C_INCLUDES += libcore/include bionic/benchmarks |
| 133 | LOCAL_MODULE_TAGS := debug |
| 134 | LOCAL_MODULE := libjavacore-benchmarks |
| 135 | LOCAL_ADDITIONAL_DEPENDENCIES := $(LOCAL_PATH)/NativeCode.mk |
Evgenii Stepanov | be83c6b | 2015-06-11 15:09:54 -0700 | [diff] [blame] | 136 | LOCAL_SHARED_LIBRARIES := libnativehelper |
Christopher Ferris | 08d97ae | 2015-03-14 16:36:37 -0700 | [diff] [blame] | 137 | LOCAL_CXX_STL := libc++ |
| 138 | LOCAL_MULTILIB := both |
| 139 | LOCAL_MODULE_STEM_32 := $(LOCAL_MODULE)32 |
| 140 | LOCAL_MODULE_STEM_64 := $(LOCAL_MODULE)64 |
| 141 | include $(BUILD_NATIVE_BENCHMARK) |
| 142 | |
Kenny Root | 6914efc | 2013-01-28 12:31:22 -0800 | [diff] [blame] | 143 | |
Dan Bornstein | 6ac43c2 | 2009-10-24 15:33:49 -0700 | [diff] [blame] | 144 | # |
| 145 | # Build for the host. |
| 146 | # |
| 147 | |
Elliott Hughes | 4bf0485 | 2014-12-17 10:28:56 -0800 | [diff] [blame] | 148 | ifeq ($(HOST_OS),linux) |
| 149 | |
Ian Rogers | 3deabd2 | 2014-05-23 15:12:42 -0700 | [diff] [blame] | 150 | include $(CLEAR_VARS) |
| 151 | LOCAL_CLANG := true |
| 152 | LOCAL_SRC_FILES += $(core_src_files) |
| 153 | LOCAL_CFLAGS += $(core_cflags) |
| 154 | LOCAL_C_INCLUDES += $(core_c_includes) |
| 155 | LOCAL_CPPFLAGS += $(core_cppflags) |
Ian Rogers | efae383 | 2014-06-10 23:29:14 -0700 | [diff] [blame] | 156 | LOCAL_LDLIBS += -ldl -lpthread |
| 157 | ifeq ($(HOST_OS),linux) |
| 158 | LOCAL_LDLIBS += -lrt |
| 159 | endif |
Ian Rogers | 3deabd2 | 2014-05-23 15:12:42 -0700 | [diff] [blame] | 160 | LOCAL_MODULE_TAGS := optional |
| 161 | LOCAL_MODULE := libjavacore |
| 162 | LOCAL_ADDITIONAL_DEPENDENCIES := $(LOCAL_PATH)/NativeCode.mk |
Narayan Kamath | 3153886 | 2015-04-29 16:05:05 +0100 | [diff] [blame] | 163 | LOCAL_SHARED_LIBRARIES += $(core_shared_libraries) libexpat-host libicuuc-host libicui18n-host libcrypto-host libz-host libziparchive-host |
| 164 | LOCAL_STATIC_LIBRARIES += $(core_static_libraries) |
Ian Rogers | 64c039e | 2014-06-17 01:47:15 -0700 | [diff] [blame] | 165 | LOCAL_MULTILIB := both |
Dan Albert | f277bbc | 2014-11-04 20:24:36 -0800 | [diff] [blame] | 166 | LOCAL_CXX_STL := libc++ |
Ian Rogers | 3deabd2 | 2014-05-23 15:12:42 -0700 | [diff] [blame] | 167 | include $(BUILD_HOST_SHARED_LIBRARY) |
Kenny Root | ba07db5 | 2013-08-29 13:40:35 -0700 | [diff] [blame] | 168 | |
Ian Rogers | 3deabd2 | 2014-05-23 15:12:42 -0700 | [diff] [blame] | 169 | ifeq ($(LIBCORE_SKIP_TESTS),) |
Kenny Root | 6914efc | 2013-01-28 12:31:22 -0800 | [diff] [blame] | 170 | include $(CLEAR_VARS) |
Ian Rogers | 6c73821 | 2014-05-23 14:59:29 -0700 | [diff] [blame] | 171 | LOCAL_CLANG := true |
Elliott Hughes | 79ffafe | 2013-07-30 15:42:28 -0700 | [diff] [blame] | 172 | LOCAL_SRC_FILES += $(core_test_files) |
Kenny Root | 6914efc | 2013-01-28 12:31:22 -0800 | [diff] [blame] | 173 | LOCAL_CFLAGS += $(core_cflags) |
Elliott Hughes | fc0498f | 2014-12-15 15:25:34 -0800 | [diff] [blame] | 174 | LOCAL_C_INCLUDES += libcore/include |
Kenny Root | 6914efc | 2013-01-28 12:31:22 -0800 | [diff] [blame] | 175 | LOCAL_CPPFLAGS += $(core_cppflags) |
| 176 | LOCAL_LDLIBS += -ldl -lpthread |
| 177 | LOCAL_MODULE_TAGS := optional |
Kenny Root | 5f1f97c | 2013-02-01 11:26:09 -0800 | [diff] [blame] | 178 | LOCAL_MODULE := libjavacoretests |
Kenny Root | 6914efc | 2013-01-28 12:31:22 -0800 | [diff] [blame] | 179 | LOCAL_ADDITIONAL_DEPENDENCIES := $(LOCAL_PATH)/NativeCode.mk |
Narayan Kamath | a9b60a8 | 2015-09-02 13:26:54 +0100 | [diff] [blame] | 180 | LOCAL_SHARED_LIBRARIES := libcrypto-host libnativehelper |
Nicolas Geoffray | 7067525 | 2015-06-12 12:39:42 +0100 | [diff] [blame] | 181 | LOCAL_MULTILIB := both |
Dan Albert | f277bbc | 2014-11-04 20:24:36 -0800 | [diff] [blame] | 182 | LOCAL_CXX_STL := libc++ |
Kenny Root | 6914efc | 2013-01-28 12:31:22 -0800 | [diff] [blame] | 183 | include $(BUILD_HOST_SHARED_LIBRARY) |
Ian Rogers | 3deabd2 | 2014-05-23 15:12:42 -0700 | [diff] [blame] | 184 | endif # LIBCORE_SKIP_TESTS |
Elliott Hughes | 4bf0485 | 2014-12-17 10:28:56 -0800 | [diff] [blame] | 185 | |
| 186 | endif # HOST_OS == linux |