1 #
 2 # Copyright (c) 2015, 2023, Oracle and/or its affiliates. All rights reserved.
 3 # DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
 4 #
 5 # This code is free software; you can redistribute it and/or modify it
 6 # under the terms of the GNU General Public License version 2 only, as
 7 # published by the Free Software Foundation.  Oracle designates this
 8 # particular file as subject to the "Classpath" exception as provided
 9 # by Oracle in the LICENSE file that accompanied this code.
10 #
11 # This code is distributed in the hope that it will be useful, but WITHOUT
12 # ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
13 # FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
14 # version 2 for more details (a copy is included in the LICENSE file that
15 # accompanied this code).
16 #
17 # You should have received a copy of the GNU General Public License version
18 # 2 along with this work; if not, write to the Free Software Foundation,
19 # Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
20 #
21 # Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
22 # or visit www.oracle.com if you need additional information or have any
23 # questions.
24 #
25 
26 ################################################################################
27 # This file builds the Java components of testlib.
28 # It also covers the test-image part, where the built files are copied to the
29 # test image.
30 ################################################################################
31 
32 default: all
33 
34 include $(SPEC)
35 include MakeBase.gmk
36 include JavaCompilation.gmk
37 
38 ################################################################################
39 # Targets for building the test lib jars
40 ################################################################################
41 
42 TARGETS :=
43 
44 TEST_LIB_SOURCE_DIR := $(TOPDIR)/test/lib
45 TEST_LIB_SUPPORT := $(SUPPORT_OUTPUTDIR)/test/lib
46 
47 $(eval $(call SetupJavaCompilation, BUILD_WB_JAR, \
48     TARGET_RELEASE := $(TARGET_RELEASE_NEWJDK_UPGRADED), \
49     SRC := $(TEST_LIB_SOURCE_DIR)/jdk/test/whitebox/, \
50     BIN := $(TEST_LIB_SUPPORT)/wb_classes, \
51     JAR := $(TEST_LIB_SUPPORT)/wb.jar, \
52     DISABLED_WARNINGS := deprecation removal preview, \
53 ))
54 
55 TARGETS += $(BUILD_WB_JAR)
56 
57 $(eval $(call SetupJavaCompilation, BUILD_TEST_LIB_JAR, \
58     TARGET_RELEASE := $(TARGET_RELEASE_NEWJDK_UPGRADED), \
59     SRC := $(TEST_LIB_SOURCE_DIR), \
60     EXCLUDES := jdk/test/lib/containers jdk/test/lib/security org, \
61     BIN := $(TEST_LIB_SUPPORT)/test-lib_classes, \
62     HEADERS := $(TEST_LIB_SUPPORT)/test-lib_headers, \
63     JAR := $(TEST_LIB_SUPPORT)/test-lib.jar, \
64     DISABLED_WARNINGS := try deprecation rawtypes unchecked serial cast removal preview varargs, \
65     JAVAC_FLAGS := --add-exports java.base/sun.security.util=ALL-UNNAMED \
66         --add-exports java.base/jdk.internal.classfile=ALL-UNNAMED \
67         --add-exports java.base/jdk.internal.classfile.attribute=ALL-UNNAMED \
68         --add-exports java.base/jdk.internal.classfile.constantpool=ALL-UNNAMED \
69         --add-exports java.base/jdk.internal.module=ALL-UNNAMED \
70         --add-exports jdk.compiler/com.sun.tools.javac.api=ALL-UNNAMED \
71         --add-exports jdk.compiler/com.sun.tools.javac.code=ALL-UNNAMED \
72         --add-exports jdk.compiler/com.sun.tools.javac.comp=ALL-UNNAMED \
73         --add-exports jdk.compiler/com.sun.tools.javac.main=ALL-UNNAMED \
74         --add-exports jdk.compiler/com.sun.tools.javac.tree=ALL-UNNAMED \
75         --add-exports jdk.compiler/com.sun.tools.javac.util=ALL-UNNAMED \
76         --enable-preview, \
77 ))
78 
79 TARGETS += $(BUILD_TEST_LIB_JAR)
80 
81 build-test-lib: $(TARGETS)
82 
83 ################################################################################
84 # Targets for building test-image.
85 ################################################################################
86 
87 # Copy the jars to the test image.
88 $(eval $(call SetupCopyFiles, COPY_LIBTEST_JARS, \
89     DEST := $(TEST_IMAGE_DIR)/lib-test, \
90     FILES := $(BUILD_WB_JAR_JAR) $(BUILD_TEST_LIB_JAR_JAR), \
91 ))
92 #
93 
94 test-image-lib: $(COPY_LIBTEST_JARS)
95 
96 all: build-test-lib
97 
98 .PHONY: default all build-test-lib test-image-lib