jdk/make/Profiles.gmk
author tschatzl
Mon, 20 Jan 2014 11:47:07 +0100
changeset 22545 b93a7f0e9b9d
parent 21805 c7d7946239de
child 22336 a5de9b85e983
permissions -rw-r--r--
8027476: Improve performance of Stringtable unlink 8027455: Improve symbol table scan times during gc pauses Summary: Parallelize string table and symbol table scan during remark and full GC. Some additional statistics output if the experimental flag G1TraceStringSymbolTableScrubbing is set. Reviewed-by: mgerdin, coleenp, brutisso
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
15681
8ca785029fe2 8004265: Add build support for Compact Profiles
dholmes
parents:
diff changeset
     1
#
8ca785029fe2 8004265: Add build support for Compact Profiles
dholmes
parents:
diff changeset
     2
# Copyright (c) 2012, 2013, Oracle and/or its affiliates. All rights reserved.
8ca785029fe2 8004265: Add build support for Compact Profiles
dholmes
parents:
diff changeset
     3
# DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
8ca785029fe2 8004265: Add build support for Compact Profiles
dholmes
parents:
diff changeset
     4
#
8ca785029fe2 8004265: Add build support for Compact Profiles
dholmes
parents:
diff changeset
     5
# This code is free software; you can redistribute it and/or modify it
8ca785029fe2 8004265: Add build support for Compact Profiles
dholmes
parents:
diff changeset
     6
# under the terms of the GNU General Public License version 2 only, as
8ca785029fe2 8004265: Add build support for Compact Profiles
dholmes
parents:
diff changeset
     7
# published by the Free Software Foundation.  Oracle designates this
8ca785029fe2 8004265: Add build support for Compact Profiles
dholmes
parents:
diff changeset
     8
# particular file as subject to the "Classpath" exception as provided
8ca785029fe2 8004265: Add build support for Compact Profiles
dholmes
parents:
diff changeset
     9
# by Oracle in the LICENSE file that accompanied this code.
8ca785029fe2 8004265: Add build support for Compact Profiles
dholmes
parents:
diff changeset
    10
#
8ca785029fe2 8004265: Add build support for Compact Profiles
dholmes
parents:
diff changeset
    11
# This code is distributed in the hope that it will be useful, but WITHOUT
8ca785029fe2 8004265: Add build support for Compact Profiles
dholmes
parents:
diff changeset
    12
# ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
8ca785029fe2 8004265: Add build support for Compact Profiles
dholmes
parents:
diff changeset
    13
# FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
8ca785029fe2 8004265: Add build support for Compact Profiles
dholmes
parents:
diff changeset
    14
# version 2 for more details (a copy is included in the LICENSE file that
8ca785029fe2 8004265: Add build support for Compact Profiles
dholmes
parents:
diff changeset
    15
# accompanied this code).
8ca785029fe2 8004265: Add build support for Compact Profiles
dholmes
parents:
diff changeset
    16
#
8ca785029fe2 8004265: Add build support for Compact Profiles
dholmes
parents:
diff changeset
    17
# You should have received a copy of the GNU General Public License version
8ca785029fe2 8004265: Add build support for Compact Profiles
dholmes
parents:
diff changeset
    18
# 2 along with this work; if not, write to the Free Software Foundation,
8ca785029fe2 8004265: Add build support for Compact Profiles
dholmes
parents:
diff changeset
    19
# Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
8ca785029fe2 8004265: Add build support for Compact Profiles
dholmes
parents:
diff changeset
    20
#
8ca785029fe2 8004265: Add build support for Compact Profiles
dholmes
parents:
diff changeset
    21
# Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
8ca785029fe2 8004265: Add build support for Compact Profiles
dholmes
parents:
diff changeset
    22
# or visit www.oracle.com if you need additional information or have any
8ca785029fe2 8004265: Add build support for Compact Profiles
dholmes
parents:
diff changeset
    23
# questions.
8ca785029fe2 8004265: Add build support for Compact Profiles
dholmes
parents:
diff changeset
    24
#
8ca785029fe2 8004265: Add build support for Compact Profiles
dholmes
parents:
diff changeset
    25
8ca785029fe2 8004265: Add build support for Compact Profiles
dholmes
parents:
diff changeset
    26
include ProfileNames.gmk
8ca785029fe2 8004265: Add build support for Compact Profiles
dholmes
parents:
diff changeset
    27
8ca785029fe2 8004265: Add build support for Compact Profiles
dholmes
parents:
diff changeset
    28
# This defines the include lists for each profile, categorized as lib, bin
8ca785029fe2 8004265: Add build support for Compact Profiles
dholmes
parents:
diff changeset
    29
# and other. We can use these to define the file lists for each profile
8ca785029fe2 8004265: Add build support for Compact Profiles
dholmes
parents:
diff changeset
    30
# directly, rather than constructing a set of files to exclude from the
8ca785029fe2 8004265: Add build support for Compact Profiles
dholmes
parents:
diff changeset
    31
# set of all files. But initially we will stick with generating exclude lists
8ca785029fe2 8004265: Add build support for Compact Profiles
dholmes
parents:
diff changeset
    32
# as that is how the main build process already works.
8ca785029fe2 8004265: Add build support for Compact Profiles
dholmes
parents:
diff changeset
    33
8ca785029fe2 8004265: Add build support for Compact Profiles
dholmes
parents:
diff changeset
    34
include profile-includes.txt
8ca785029fe2 8004265: Add build support for Compact Profiles
dholmes
parents:
diff changeset
    35
8ca785029fe2 8004265: Add build support for Compact Profiles
dholmes
parents:
diff changeset
    36
###############################################################################
8ca785029fe2 8004265: Add build support for Compact Profiles
dholmes
parents:
diff changeset
    37
# Per profile Jar lists
8ca785029fe2 8004265: Add build support for Compact Profiles
dholmes
parents:
diff changeset
    38
#
8ca785029fe2 8004265: Add build support for Compact Profiles
dholmes
parents:
diff changeset
    39
# These are the jar files to be built. In some builds these have to be
8ca785029fe2 8004265: Add build support for Compact Profiles
dholmes
parents:
diff changeset
    40
# imported (signed jars) rather than built.
8ca785029fe2 8004265: Add build support for Compact Profiles
dholmes
parents:
diff changeset
    41
#
8ca785029fe2 8004265: Add build support for Compact Profiles
dholmes
parents:
diff changeset
    42
# The incoming lists, eg PROFILE_1_JRE_JARS_FILES, are the jars to be
20547
453837141fac 8001931: The new build system whitespace cleanup
ihse
parents: 19570
diff changeset
    43
# included in this profile. They have the jar name relative to the lib
453837141fac 8001931: The new build system whitespace cleanup
ihse
parents: 19570
diff changeset
    44
# directory. We have to turn these into targets by adding the
15681
8ca785029fe2 8004265: Add build support for Compact Profiles
dholmes
parents:
diff changeset
    45
# $(IMAGES_OUTPUTDIR)/lib prefix
8ca785029fe2 8004265: Add build support for Compact Profiles
dholmes
parents:
diff changeset
    46
#
8ca785029fe2 8004265: Add build support for Compact Profiles
dholmes
parents:
diff changeset
    47
# Note that some jars may be optional depending on the type of build (jdk vs.
8ca785029fe2 8004265: Add build support for Compact Profiles
dholmes
parents:
diff changeset
    48
# openjdk) and the platform.
8ca785029fe2 8004265: Add build support for Compact Profiles
dholmes
parents:
diff changeset
    49
#
8ca785029fe2 8004265: Add build support for Compact Profiles
dholmes
parents:
diff changeset
    50
# WARNING: incoming lists are currently validated for linux only!
8ca785029fe2 8004265: Add build support for Compact Profiles
dholmes
parents:
diff changeset
    51
###############################################################################
8ca785029fe2 8004265: Add build support for Compact Profiles
dholmes
parents:
diff changeset
    52
8ca785029fe2 8004265: Add build support for Compact Profiles
dholmes
parents:
diff changeset
    53
# These are jar files for which the contents vary depending on the profile
8ca785029fe2 8004265: Add build support for Compact Profiles
dholmes
parents:
diff changeset
    54
CUSTOM_JARS := rt.jar resources.jar
8ca785029fe2 8004265: Add build support for Compact Profiles
dholmes
parents:
diff changeset
    55
# This is used in Images.gmk
8ca785029fe2 8004265: Add build support for Compact Profiles
dholmes
parents:
diff changeset
    56
CUSTOM_PROFILE_JARS := $(addprefix $(IMAGES_OUTPUTDIR)/lib$(PROFILE)/, $(CUSTOM_JARS))
8ca785029fe2 8004265: Add build support for Compact Profiles
dholmes
parents:
diff changeset
    57
8ca785029fe2 8004265: Add build support for Compact Profiles
dholmes
parents:
diff changeset
    58
# These are the common jar files built for and included with this profile
8ca785029fe2 8004265: Add build support for Compact Profiles
dholmes
parents:
diff changeset
    59
# Filter out the custom jars and turn them into targets.
8ca785029fe2 8004265: Add build support for Compact Profiles
dholmes
parents:
diff changeset
    60
20547
453837141fac 8001931: The new build system whitespace cleanup
ihse
parents: 19570
diff changeset
    61
PROFILE_1_JARS := \
15681
8ca785029fe2 8004265: Add build support for Compact Profiles
dholmes
parents:
diff changeset
    62
    $(addprefix $(IMAGES_OUTPUTDIR)/lib/, $(filter-out $(CUSTOM_JARS), $(PROFILE_1_JRE_JAR_FILES)))
8ca785029fe2 8004265: Add build support for Compact Profiles
dholmes
parents:
diff changeset
    63
8ca785029fe2 8004265: Add build support for Compact Profiles
dholmes
parents:
diff changeset
    64
PROFILE_2_JARS := \
8ca785029fe2 8004265: Add build support for Compact Profiles
dholmes
parents:
diff changeset
    65
    $(if $(PROFILE_2_JRE_JAR_FILES), $(addprefix $(IMAGES_OUTPUTDIR)/lib/, $(PROFILE_2_JRE_JAR_FILES))) \
8ca785029fe2 8004265: Add build support for Compact Profiles
dholmes
parents:
diff changeset
    66
    $(PROFILE_1_JARS)
8ca785029fe2 8004265: Add build support for Compact Profiles
dholmes
parents:
diff changeset
    67
8ca785029fe2 8004265: Add build support for Compact Profiles
dholmes
parents:
diff changeset
    68
PROFILE_3_JARS := \
8ca785029fe2 8004265: Add build support for Compact Profiles
dholmes
parents:
diff changeset
    69
    $(addprefix $(IMAGES_OUTPUTDIR)/lib/, $(PROFILE_3_JRE_JAR_FILES)) \
8ca785029fe2 8004265: Add build support for Compact Profiles
dholmes
parents:
diff changeset
    70
    $(PROFILE_2_JARS)
8ca785029fe2 8004265: Add build support for Compact Profiles
dholmes
parents:
diff changeset
    71
19570
e1c7cdf2f15a 8023460: OPENJDK build fails due to missing jfr.jar
dholmes
parents: 16637
diff changeset
    72
ifneq ($(ENABLE_JFR), true)
20547
453837141fac 8001931: The new build system whitespace cleanup
ihse
parents: 19570
diff changeset
    73
  FULL_JRE_JAR_FILES := $(filter-out jfr.jar, $(FULL_JRE_JAR_FILES))
19570
e1c7cdf2f15a 8023460: OPENJDK build fails due to missing jfr.jar
dholmes
parents: 16637
diff changeset
    74
endif
e1c7cdf2f15a 8023460: OPENJDK build fails due to missing jfr.jar
dholmes
parents: 16637
diff changeset
    75
16478
52ea0de470fd 8009429: Miscellaneous profiles cleanup
dholmes
parents: 15681
diff changeset
    76
FULL_JRE_JARS := \
52ea0de470fd 8009429: Miscellaneous profiles cleanup
dholmes
parents: 15681
diff changeset
    77
    $(addprefix $(IMAGES_OUTPUTDIR)/lib/, $(FULL_JRE_JAR_FILES)) \
15681
8ca785029fe2 8004265: Add build support for Compact Profiles
dholmes
parents:
diff changeset
    78
    $(PROFILE_3_JARS)
8ca785029fe2 8004265: Add build support for Compact Profiles
dholmes
parents:
diff changeset
    79
8ca785029fe2 8004265: Add build support for Compact Profiles
dholmes
parents:
diff changeset
    80
# The full set of "jar" files needed for a complete JDK (ct.sym and src.zip
8ca785029fe2 8004265: Add build support for Compact Profiles
dholmes
parents:
diff changeset
    81
# are also included.)
8ca785029fe2 8004265: Add build support for Compact Profiles
dholmes
parents:
diff changeset
    82
# Note we need to add back the regular form of all the custom profile jars e.g.
16487
f3fecb3d79af 8009426: "profiles" target fails due to nashorn if "images" is not built first
dholmes
parents: 16478
diff changeset
    83
# rt.jar and resources.jar that we filtered out above
15681
8ca785029fe2 8004265: Add build support for Compact Profiles
dholmes
parents:
diff changeset
    84
16478
52ea0de470fd 8009429: Miscellaneous profiles cleanup
dholmes
parents: 15681
diff changeset
    85
ALL_JARS := $(FULL_JRE_JARS) \
20547
453837141fac 8001931: The new build system whitespace cleanup
ihse
parents: 19570
diff changeset
    86
    $(IMAGES_OUTPUTDIR)/lib/rt.jar \
453837141fac 8001931: The new build system whitespace cleanup
ihse
parents: 19570
diff changeset
    87
    $(IMAGES_OUTPUTDIR)/lib/resources.jar \
453837141fac 8001931: The new build system whitespace cleanup
ihse
parents: 19570
diff changeset
    88
    $(IMAGES_OUTPUTDIR)/lib/jconsole.jar \
453837141fac 8001931: The new build system whitespace cleanup
ihse
parents: 19570
diff changeset
    89
    $(IMAGES_OUTPUTDIR)/lib/dt.jar \
453837141fac 8001931: The new build system whitespace cleanup
ihse
parents: 19570
diff changeset
    90
    $(IMAGES_OUTPUTDIR)/lib/tools.jar \
453837141fac 8001931: The new build system whitespace cleanup
ihse
parents: 19570
diff changeset
    91
    $(IMAGES_OUTPUTDIR)/lib/ct.sym \
453837141fac 8001931: The new build system whitespace cleanup
ihse
parents: 19570
diff changeset
    92
    $(IMAGES_OUTPUTDIR)/src.zip
16637
32419853ec8d 8011388: Support building zero and zeroshark with the new build
omajid
parents: 16487
diff changeset
    93
20547
453837141fac 8001931: The new build system whitespace cleanup
ihse
parents: 19570
diff changeset
    94
ifeq ($(INCLUDE_SA), true)
453837141fac 8001931: The new build system whitespace cleanup
ihse
parents: 19570
diff changeset
    95
  ALL_JARS += $(IMAGES_OUTPUTDIR)/lib/sa-jdi.jar
16637
32419853ec8d 8011388: Support building zero and zeroshark with the new build
omajid
parents: 16487
diff changeset
    96
endif
15681
8ca785029fe2 8004265: Add build support for Compact Profiles
dholmes
parents:
diff changeset
    97
20547
453837141fac 8001931: The new build system whitespace cleanup
ihse
parents: 19570
diff changeset
    98
ifeq ($(OPENJDK_TARGET_OS), solaris)
453837141fac 8001931: The new build system whitespace cleanup
ihse
parents: 19570
diff changeset
    99
  ifndef OPENJDK
453837141fac 8001931: The new build system whitespace cleanup
ihse
parents: 19570
diff changeset
   100
    ALL_JARS += $(IMAGES_OUTPUTDIR)/lib/ext/ucrypto.jar
453837141fac 8001931: The new build system whitespace cleanup
ihse
parents: 19570
diff changeset
   101
  endif
15681
8ca785029fe2 8004265: Add build support for Compact Profiles
dholmes
parents:
diff changeset
   102
endif
8ca785029fe2 8004265: Add build support for Compact Profiles
dholmes
parents:
diff changeset
   103
20547
453837141fac 8001931: The new build system whitespace cleanup
ihse
parents: 19570
diff changeset
   104
ifeq ($(OPENJDK_TARGET_OS), windows)
453837141fac 8001931: The new build system whitespace cleanup
ihse
parents: 19570
diff changeset
   105
  ALL_JARS += $(IMAGES_OUTPUTDIR)/lib/ext/sunmscapi.jar
453837141fac 8001931: The new build system whitespace cleanup
ihse
parents: 19570
diff changeset
   106
endif
15681
8ca785029fe2 8004265: Add build support for Compact Profiles
dholmes
parents:
diff changeset
   107
20547
453837141fac 8001931: The new build system whitespace cleanup
ihse
parents: 19570
diff changeset
   108
ifeq ($(OPENJDK_TARGET_OS), macosx)
453837141fac 8001931: The new build system whitespace cleanup
ihse
parents: 19570
diff changeset
   109
  ALL_JARS += $(IMAGES_OUTPUTDIR)/lib/JObjC.jar
15681
8ca785029fe2 8004265: Add build support for Compact Profiles
dholmes
parents:
diff changeset
   110
endif
8ca785029fe2 8004265: Add build support for Compact Profiles
dholmes
parents:
diff changeset
   111
8ca785029fe2 8004265: Add build support for Compact Profiles
dholmes
parents:
diff changeset
   112
ifeq ($(PROFILE), profile_1)
20547
453837141fac 8001931: The new build system whitespace cleanup
ihse
parents: 19570
diff changeset
   113
  PROFILE_JARS := $(PROFILE_1_JARS)
15681
8ca785029fe2 8004265: Add build support for Compact Profiles
dholmes
parents:
diff changeset
   114
else ifeq ($(PROFILE), profile_2)
20547
453837141fac 8001931: The new build system whitespace cleanup
ihse
parents: 19570
diff changeset
   115
  PROFILE_JARS := $(PROFILE_2_JARS)
15681
8ca785029fe2 8004265: Add build support for Compact Profiles
dholmes
parents:
diff changeset
   116
else ifeq ($(PROFILE), profile_3)
20547
453837141fac 8001931: The new build system whitespace cleanup
ihse
parents: 19570
diff changeset
   117
  PROFILE_JARS := $(PROFILE_3_JARS)
15681
8ca785029fe2 8004265: Add build support for Compact Profiles
dholmes
parents:
diff changeset
   118
endif
20547
453837141fac 8001931: The new build system whitespace cleanup
ihse
parents: 19570
diff changeset
   119
ifneq ($(PROFILE), )
453837141fac 8001931: The new build system whitespace cleanup
ihse
parents: 19570
diff changeset
   120
  JARS := $(CUSTOM_PROFILE_JARS) $(PROFILE_JARS)
15681
8ca785029fe2 8004265: Add build support for Compact Profiles
dholmes
parents:
diff changeset
   121
else
20547
453837141fac 8001931: The new build system whitespace cleanup
ihse
parents: 19570
diff changeset
   122
  JARS := $(ALL_JARS)
15681
8ca785029fe2 8004265: Add build support for Compact Profiles
dholmes
parents:
diff changeset
   123
endif
8ca785029fe2 8004265: Add build support for Compact Profiles
dholmes
parents:
diff changeset
   124
8ca785029fe2 8004265: Add build support for Compact Profiles
dholmes
parents:
diff changeset
   125
###############################################################################
8ca785029fe2 8004265: Add build support for Compact Profiles
dholmes
parents:
diff changeset
   126
# JRE contents
8ca785029fe2 8004265: Add build support for Compact Profiles
dholmes
parents:
diff changeset
   127
###############################################################################
8ca785029fe2 8004265: Add build support for Compact Profiles
dholmes
parents:
diff changeset
   128
8ca785029fe2 8004265: Add build support for Compact Profiles
dholmes
parents:
diff changeset
   129
8ca785029fe2 8004265: Add build support for Compact Profiles
dholmes
parents:
diff changeset
   130
# we don't need to do anything if not building a profile
20547
453837141fac 8001931: The new build system whitespace cleanup
ihse
parents: 19570
diff changeset
   131
ifneq ($(PROFILE), )
15681
8ca785029fe2 8004265: Add build support for Compact Profiles
dholmes
parents:
diff changeset
   132
8ca785029fe2 8004265: Add build support for Compact Profiles
dholmes
parents:
diff changeset
   133
8ca785029fe2 8004265: Add build support for Compact Profiles
dholmes
parents:
diff changeset
   134
# Need all files to generate the exclude lists
8ca785029fe2 8004265: Add build support for Compact Profiles
dholmes
parents:
diff changeset
   135
NEW_ALL_BIN_LIST := $(patsubst $(JDK_OUTPUTDIR)/bin/%,%,$(shell $(FIND) $(JDK_OUTPUTDIR)/bin \( -type f -o -type l \) ! -name "sjavac"))
8ca785029fe2 8004265: Add build support for Compact Profiles
dholmes
parents:
diff changeset
   136
8ca785029fe2 8004265: Add build support for Compact Profiles
dholmes
parents:
diff changeset
   137
ALL_JRE_BIN_FILES := \
20547
453837141fac 8001931: The new build system whitespace cleanup
ihse
parents: 19570
diff changeset
   138
    $(PROFILE_1_JRE_BIN_FILES) \
453837141fac 8001931: The new build system whitespace cleanup
ihse
parents: 19570
diff changeset
   139
    $(PROFILE_2_JRE_BIN_FILES) \
453837141fac 8001931: The new build system whitespace cleanup
ihse
parents: 19570
diff changeset
   140
    $(PROFILE_3_JRE_BIN_FILES) \
453837141fac 8001931: The new build system whitespace cleanup
ihse
parents: 19570
diff changeset
   141
    $(FULL_JRE_BIN_FILES)
15681
8ca785029fe2 8004265: Add build support for Compact Profiles
dholmes
parents:
diff changeset
   142
8ca785029fe2 8004265: Add build support for Compact Profiles
dholmes
parents:
diff changeset
   143
NOT_JRE_BIN_FILES := $(filter-out $(ALL_JRE_BIN_FILES), $(NEW_ALL_BIN_LIST))
8ca785029fe2 8004265: Add build support for Compact Profiles
dholmes
parents:
diff changeset
   144
8ca785029fe2 8004265: Add build support for Compact Profiles
dholmes
parents:
diff changeset
   145
# Additional exclusions for profile JRE
8ca785029fe2 8004265: Add build support for Compact Profiles
dholmes
parents:
diff changeset
   146
ifeq ($(PROFILE), profile_1)
20547
453837141fac 8001931: The new build system whitespace cleanup
ihse
parents: 19570
diff changeset
   147
  NOT_JRE_BIN_FILES += \
453837141fac 8001931: The new build system whitespace cleanup
ihse
parents: 19570
diff changeset
   148
      $(PROFILE_2_JRE_BIN_FILES) \
453837141fac 8001931: The new build system whitespace cleanup
ihse
parents: 19570
diff changeset
   149
      $(PROFILE_3_JRE_BIN_FILES) \
453837141fac 8001931: The new build system whitespace cleanup
ihse
parents: 19570
diff changeset
   150
      $(FULL_JRE_BIN_FILES)
15681
8ca785029fe2 8004265: Add build support for Compact Profiles
dholmes
parents:
diff changeset
   151
endif
8ca785029fe2 8004265: Add build support for Compact Profiles
dholmes
parents:
diff changeset
   152
8ca785029fe2 8004265: Add build support for Compact Profiles
dholmes
parents:
diff changeset
   153
ifeq ($(PROFILE), profile_2)
20547
453837141fac 8001931: The new build system whitespace cleanup
ihse
parents: 19570
diff changeset
   154
  NOT_JRE_BIN_FILES += \
453837141fac 8001931: The new build system whitespace cleanup
ihse
parents: 19570
diff changeset
   155
      $(PROFILE_3_JRE_BIN_FILES) \
453837141fac 8001931: The new build system whitespace cleanup
ihse
parents: 19570
diff changeset
   156
      $(FULL_JRE_BIN_FILES)
15681
8ca785029fe2 8004265: Add build support for Compact Profiles
dholmes
parents:
diff changeset
   157
endif
8ca785029fe2 8004265: Add build support for Compact Profiles
dholmes
parents:
diff changeset
   158
8ca785029fe2 8004265: Add build support for Compact Profiles
dholmes
parents:
diff changeset
   159
ifeq ($(PROFILE), profile_3)
20547
453837141fac 8001931: The new build system whitespace cleanup
ihse
parents: 19570
diff changeset
   160
  NOT_JRE_BIN_FILES += \
453837141fac 8001931: The new build system whitespace cleanup
ihse
parents: 19570
diff changeset
   161
      $(FULL_JRE_BIN_FILES)
15681
8ca785029fe2 8004265: Add build support for Compact Profiles
dholmes
parents:
diff changeset
   162
endif
8ca785029fe2 8004265: Add build support for Compact Profiles
dholmes
parents:
diff changeset
   163
8ca785029fe2 8004265: Add build support for Compact Profiles
dholmes
parents:
diff changeset
   164
NOT_JRE_BIN_FILES := $(addprefix $(JDK_OUTPUTDIR)/bin/, $(NOT_JRE_BIN_FILES))
8ca785029fe2 8004265: Add build support for Compact Profiles
dholmes
parents:
diff changeset
   165
8ca785029fe2 8004265: Add build support for Compact Profiles
dholmes
parents:
diff changeset
   166
# Need all files to generate the exclude lists
8ca785029fe2 8004265: Add build support for Compact Profiles
dholmes
parents:
diff changeset
   167
NEW_ALL_LIB_LIST := $(patsubst $(JDK_OUTPUTDIR)/lib/%,%,$(shell $(FIND) $(JDK_OUTPUTDIR)/lib \( -type f -o -type l \) -a ! \( -name "_the*" -o -name "javac_state " \) ))
8ca785029fe2 8004265: Add build support for Compact Profiles
dholmes
parents:
diff changeset
   168
NEW_ALL_LIB_LIST += $(patsubst $(IMAGES_OUTPUTDIR)/lib/%,%,$(shell $(FIND) $(IMAGES_OUTPUTDIR)/lib \( -type f -o -type l \) -a ! \( -name "_the*" -o -name "javac_state " \) ))
8ca785029fe2 8004265: Add build support for Compact Profiles
dholmes
parents:
diff changeset
   169
8ca785029fe2 8004265: Add build support for Compact Profiles
dholmes
parents:
diff changeset
   170
ALL_JRE_LIB_FILES := \
20547
453837141fac 8001931: The new build system whitespace cleanup
ihse
parents: 19570
diff changeset
   171
    $(PROFILE_1_JRE_LIB_FILES) \
453837141fac 8001931: The new build system whitespace cleanup
ihse
parents: 19570
diff changeset
   172
    $(PROFILE_2_JRE_LIB_FILES) \
453837141fac 8001931: The new build system whitespace cleanup
ihse
parents: 19570
diff changeset
   173
    $(PROFILE_3_JRE_LIB_FILES) \
453837141fac 8001931: The new build system whitespace cleanup
ihse
parents: 19570
diff changeset
   174
    $(FULL_JRE_LIB_FILES)
15681
8ca785029fe2 8004265: Add build support for Compact Profiles
dholmes
parents:
diff changeset
   175
8ca785029fe2 8004265: Add build support for Compact Profiles
dholmes
parents:
diff changeset
   176
NOT_JRE_LIB_FILES := $(filter-out $(ALL_JRE_LIB_FILES), $(NEW_ALL_LIB_LIST))
8ca785029fe2 8004265: Add build support for Compact Profiles
dholmes
parents:
diff changeset
   177
8ca785029fe2 8004265: Add build support for Compact Profiles
dholmes
parents:
diff changeset
   178
# Although these are NOT JRE lib files we have to filter them from the list
8ca785029fe2 8004265: Add build support for Compact Profiles
dholmes
parents:
diff changeset
   179
# (ie cause them to be added them back in here) because the logic in
8ca785029fe2 8004265: Add build support for Compact Profiles
dholmes
parents:
diff changeset
   180
# Images.gmk expects them to be there and handles them differently.
8ca785029fe2 8004265: Add build support for Compact Profiles
dholmes
parents:
diff changeset
   181
# If we don't, they end up in the wrong place in the JDK image.
8ca785029fe2 8004265: Add build support for Compact Profiles
dholmes
parents:
diff changeset
   182
# This needs fixing.
8ca785029fe2 8004265: Add build support for Compact Profiles
dholmes
parents:
diff changeset
   183
NOT_JRE_LIB_FILES := $(filter-out $(OPENJDK_TARGET_CPU_LEGACY_LIB)/$(LIBRARY_PREFIX)attach$(SHARED_LIBRARY_SUFFIX) $(OPENJDK_TARGET_CPU_LEGACY_LIB)/$(SALIB_NAME), $(NOT_JRE_LIB_FILES))
8ca785029fe2 8004265: Add build support for Compact Profiles
dholmes
parents:
diff changeset
   184
8ca785029fe2 8004265: Add build support for Compact Profiles
dholmes
parents:
diff changeset
   185
# Additional exclusions for profile JREs
8ca785029fe2 8004265: Add build support for Compact Profiles
dholmes
parents:
diff changeset
   186
ifeq ($(PROFILE), profile_1)
20547
453837141fac 8001931: The new build system whitespace cleanup
ihse
parents: 19570
diff changeset
   187
  NOT_JRE_LIB_FILES += \
453837141fac 8001931: The new build system whitespace cleanup
ihse
parents: 19570
diff changeset
   188
      $(PROFILE_2_JRE_LIB_FILES) \
453837141fac 8001931: The new build system whitespace cleanup
ihse
parents: 19570
diff changeset
   189
      $(PROFILE_3_JRE_LIB_FILES) \
453837141fac 8001931: The new build system whitespace cleanup
ihse
parents: 19570
diff changeset
   190
      $(FULL_JRE_LIB_FILES)
15681
8ca785029fe2 8004265: Add build support for Compact Profiles
dholmes
parents:
diff changeset
   191
endif
8ca785029fe2 8004265: Add build support for Compact Profiles
dholmes
parents:
diff changeset
   192
8ca785029fe2 8004265: Add build support for Compact Profiles
dholmes
parents:
diff changeset
   193
ifeq ($(PROFILE), profile_2)
20547
453837141fac 8001931: The new build system whitespace cleanup
ihse
parents: 19570
diff changeset
   194
  NOT_JRE_LIB_FILES += \
453837141fac 8001931: The new build system whitespace cleanup
ihse
parents: 19570
diff changeset
   195
      $(PROFILE_3_JRE_LIB_FILES) \
453837141fac 8001931: The new build system whitespace cleanup
ihse
parents: 19570
diff changeset
   196
      $(FULL_JRE_LIB_FILES)
15681
8ca785029fe2 8004265: Add build support for Compact Profiles
dholmes
parents:
diff changeset
   197
endif
8ca785029fe2 8004265: Add build support for Compact Profiles
dholmes
parents:
diff changeset
   198
8ca785029fe2 8004265: Add build support for Compact Profiles
dholmes
parents:
diff changeset
   199
ifeq ($(PROFILE), profile_3)
20547
453837141fac 8001931: The new build system whitespace cleanup
ihse
parents: 19570
diff changeset
   200
  NOT_JRE_LIB_FILES += \
453837141fac 8001931: The new build system whitespace cleanup
ihse
parents: 19570
diff changeset
   201
      $(FULL_JRE_LIB_FILES)
15681
8ca785029fe2 8004265: Add build support for Compact Profiles
dholmes
parents:
diff changeset
   202
endif
8ca785029fe2 8004265: Add build support for Compact Profiles
dholmes
parents:
diff changeset
   203
8ca785029fe2 8004265: Add build support for Compact Profiles
dholmes
parents:
diff changeset
   204
# Exclude the custom jar files as these will be added back via a special rule
8ca785029fe2 8004265: Add build support for Compact Profiles
dholmes
parents:
diff changeset
   205
NOT_JRE_LIB_FILES += $(CUSTOM_JARS)
8ca785029fe2 8004265: Add build support for Compact Profiles
dholmes
parents:
diff changeset
   206
8ca785029fe2 8004265: Add build support for Compact Profiles
dholmes
parents:
diff changeset
   207
###############################################################################
8ca785029fe2 8004265: Add build support for Compact Profiles
dholmes
parents:
diff changeset
   208
# Customization of rt.jar file contents
20547
453837141fac 8001931: The new build system whitespace cleanup
ihse
parents: 19570
diff changeset
   209
# These are expressed as exclusions from everything found in the
15681
8ca785029fe2 8004265: Add build support for Compact Profiles
dholmes
parents:
diff changeset
   210
# JDK_OUTPUTDIR/classes directory
8ca785029fe2 8004265: Add build support for Compact Profiles
dholmes
parents:
diff changeset
   211
###############################################################################
8ca785029fe2 8004265: Add build support for Compact Profiles
dholmes
parents:
diff changeset
   212
8ca785029fe2 8004265: Add build support for Compact Profiles
dholmes
parents:
diff changeset
   213
# The main set of excluded types/packages (ie everything not destined to be
8ca785029fe2 8004265: Add build support for Compact Profiles
dholmes
parents:
diff changeset
   214
# part of rt.jar or resources.jar is captured in the CreateJars.gmk RT_JAR_EXCLUDES
8ca785029fe2 8004265: Add build support for Compact Profiles
dholmes
parents:
diff changeset
   215
# variable. We add to that for the per-profile exclusion lists
8ca785029fe2 8004265: Add build support for Compact Profiles
dholmes
parents:
diff changeset
   216
8ca785029fe2 8004265: Add build support for Compact Profiles
dholmes
parents:
diff changeset
   217
# For each profile we have four variables:
8ca785029fe2 8004265: Add build support for Compact Profiles
dholmes
parents:
diff changeset
   218
#
8ca785029fe2 8004265: Add build support for Compact Profiles
dholmes
parents:
diff changeset
   219
# - PROFILE_n_RTJAR_INCLUDE_PACKAGES
8ca785029fe2 8004265: Add build support for Compact Profiles
dholmes
parents:
diff changeset
   220
#
8ca785029fe2 8004265: Add build support for Compact Profiles
dholmes
parents:
diff changeset
   221
# This is a package prefix indicating that all classes in that package
8ca785029fe2 8004265: Add build support for Compact Profiles
dholmes
parents:
diff changeset
   222
# and conditionally its subpackages are included in rt.jar for this profile.
8ca785029fe2 8004265: Add build support for Compact Profiles
dholmes
parents:
diff changeset
   223
# The subpackages will be included as long as they do not appear in the
8ca785029fe2 8004265: Add build support for Compact Profiles
dholmes
parents:
diff changeset
   224
# include list of a higher profile
8ca785029fe2 8004265: Add build support for Compact Profiles
dholmes
parents:
diff changeset
   225
#
8ca785029fe2 8004265: Add build support for Compact Profiles
dholmes
parents:
diff changeset
   226
# - PROFILE_n_RTJAR_INCLUDE_TYPES
8ca785029fe2 8004265: Add build support for Compact Profiles
dholmes
parents:
diff changeset
   227
#
8ca785029fe2 8004265: Add build support for Compact Profiles
dholmes
parents:
diff changeset
   228
# These are specific types that must be included within a package.
8ca785029fe2 8004265: Add build support for Compact Profiles
dholmes
parents:
diff changeset
   229
# There are two cases:
20547
453837141fac 8001931: The new build system whitespace cleanup
ihse
parents: 19570
diff changeset
   230
# - individual types in a package that is otherwise excluded at this
453837141fac 8001931: The new build system whitespace cleanup
ihse
parents: 19570
diff changeset
   231
#   profile level. The only arises if there are split packages.
15681
8ca785029fe2 8004265: Add build support for Compact Profiles
dholmes
parents:
diff changeset
   232
#
8ca785029fe2 8004265: Add build support for Compact Profiles
dholmes
parents:
diff changeset
   233
# - A higher-level package is included in a high profile where a subpackage
8ca785029fe2 8004265: Add build support for Compact Profiles
dholmes
parents:
diff changeset
   234
# is included in a lower profile. Including the package in the high profile
8ca785029fe2 8004265: Add build support for Compact Profiles
dholmes
parents:
diff changeset
   235
# would exclude it and all subpackages from the lower profile, so instead
8ca785029fe2 8004265: Add build support for Compact Profiles
dholmes
parents:
diff changeset
   236
# the classes in the package are listed for that higher profile (as *.class)
8ca785029fe2 8004265: Add build support for Compact Profiles
dholmes
parents:
diff changeset
   237
#
8ca785029fe2 8004265: Add build support for Compact Profiles
dholmes
parents:
diff changeset
   238
# These types are explicitly added back into the rt.jar content lists.
8ca785029fe2 8004265: Add build support for Compact Profiles
dholmes
parents:
diff changeset
   239
#
8ca785029fe2 8004265: Add build support for Compact Profiles
dholmes
parents:
diff changeset
   240
# - PROFILE_n_RTJAR_EXCLUDE_TYPES
8ca785029fe2 8004265: Add build support for Compact Profiles
dholmes
parents:
diff changeset
   241
#
8ca785029fe2 8004265: Add build support for Compact Profiles
dholmes
parents:
diff changeset
   242
# These are specific types that must be excluded even though most of the
8ca785029fe2 8004265: Add build support for Compact Profiles
dholmes
parents:
diff changeset
   243
# containing package is include. Again this occurs with split packges.
8ca785029fe2 8004265: Add build support for Compact Profiles
dholmes
parents:
diff changeset
   244
#
8ca785029fe2 8004265: Add build support for Compact Profiles
dholmes
parents:
diff changeset
   245
# So the exclude list for each profile consists of the include lists
20547
453837141fac 8001931: The new build system whitespace cleanup
ihse
parents: 19570
diff changeset
   246
# for all profiles above it, together with any explicitly excluded types.
15681
8ca785029fe2 8004265: Add build support for Compact Profiles
dholmes
parents:
diff changeset
   247
# This is then combined with the overall RT_JAR_EXCLUDES list (which covers
8ca785029fe2 8004265: Add build support for Compact Profiles
dholmes
parents:
diff changeset
   248
# things that go into other jar files).
8ca785029fe2 8004265: Add build support for Compact Profiles
dholmes
parents:
diff changeset
   249
#
8ca785029fe2 8004265: Add build support for Compact Profiles
dholmes
parents:
diff changeset
   250
# We also have to define the types to be explicitly included. This
8ca785029fe2 8004265: Add build support for Compact Profiles
dholmes
parents:
diff changeset
   251
# accumulates up the profiles ie profile 3 has to include the types
8ca785029fe2 8004265: Add build support for Compact Profiles
dholmes
parents:
diff changeset
   252
# that profiles 1 and 2 had to include. This is unnecessary if, for example,
8ca785029fe2 8004265: Add build support for Compact Profiles
dholmes
parents:
diff changeset
   253
# profile 3 includes the entire package, but it is harmless to add them
8ca785029fe2 8004265: Add build support for Compact Profiles
dholmes
parents:
diff changeset
   254
# explicitly, and complex to determine if we still need to include them.
8ca785029fe2 8004265: Add build support for Compact Profiles
dholmes
parents:
diff changeset
   255
#
20547
453837141fac 8001931: The new build system whitespace cleanup
ihse
parents: 19570
diff changeset
   256
# Need a way to express:
15681
8ca785029fe2 8004265: Add build support for Compact Profiles
dholmes
parents:
diff changeset
   257
#  for (int i = profile+1; i < 4; i++)
8ca785029fe2 8004265: Add build support for Compact Profiles
dholmes
parents:
diff changeset
   258
#     RT_JAR_EXCLUDES += PROFILE_$i_RTJAR_INCLUDE_PACKAGES
8ca785029fe2 8004265: Add build support for Compact Profiles
dholmes
parents:
diff changeset
   259
#
8ca785029fe2 8004265: Add build support for Compact Profiles
dholmes
parents:
diff changeset
   260
# Do it the long way for now
8ca785029fe2 8004265: Add build support for Compact Profiles
dholmes
parents:
diff changeset
   261
#
8ca785029fe2 8004265: Add build support for Compact Profiles
dholmes
parents:
diff changeset
   262
# - PROFILE_n_INCLUDE_METAINF_SERVICES
8ca785029fe2 8004265: Add build support for Compact Profiles
dholmes
parents:
diff changeset
   263
#
8ca785029fe2 8004265: Add build support for Compact Profiles
dholmes
parents:
diff changeset
   264
# These are META-INF/services/ entries found in resources.jar. Together
8ca785029fe2 8004265: Add build support for Compact Profiles
dholmes
parents:
diff changeset
   265
# resources.jar and rt.jar hold the contents of the classes directory, (the
20547
453837141fac 8001931: The new build system whitespace cleanup
ihse
parents: 19570
diff changeset
   266
# classes in rt.jar and everything else in resources.jar).Hence the
15681
8ca785029fe2 8004265: Add build support for Compact Profiles
dholmes
parents:
diff changeset
   267
# include/exclude information for resources.jar is tied to that of rt.jar
8ca785029fe2 8004265: Add build support for Compact Profiles
dholmes
parents:
diff changeset
   268
8ca785029fe2 8004265: Add build support for Compact Profiles
dholmes
parents:
diff changeset
   269
include profile-rtjar-includes.txt
8ca785029fe2 8004265: Add build support for Compact Profiles
dholmes
parents:
diff changeset
   270
8ca785029fe2 8004265: Add build support for Compact Profiles
dholmes
parents:
diff changeset
   271
# Function to expand foo/*.class into the set of classes
8ca785029fe2 8004265: Add build support for Compact Profiles
dholmes
parents:
diff changeset
   272
# NOTE: Classfiles with $ in their name are problematic as that is the
8ca785029fe2 8004265: Add build support for Compact Profiles
dholmes
parents:
diff changeset
   273
# meta-character for both make and the shell! Hence the \$$$$ substitution.
8ca785029fe2 8004265: Add build support for Compact Profiles
dholmes
parents:
diff changeset
   274
# But note that if you echo these values they will NOT display as expected.
20547
453837141fac 8001931: The new build system whitespace cleanup
ihse
parents: 19570
diff changeset
   275
class_list = $(patsubst $(JDK_OUTPUTDIR)/classes/%,%, \
453837141fac 8001931: The new build system whitespace cleanup
ihse
parents: 19570
diff changeset
   276
    $(foreach i, $(1), $(subst $$,\$$$$, $(wildcard $(JDK_OUTPUTDIR)/classes/$i))))
15681
8ca785029fe2 8004265: Add build support for Compact Profiles
dholmes
parents:
diff changeset
   277
8ca785029fe2 8004265: Add build support for Compact Profiles
dholmes
parents:
diff changeset
   278
ifeq ($(PROFILE), profile_1)
8ca785029fe2 8004265: Add build support for Compact Profiles
dholmes
parents:
diff changeset
   279
  RT_JAR_EXCLUDES += \
20547
453837141fac 8001931: The new build system whitespace cleanup
ihse
parents: 19570
diff changeset
   280
      $(call class_list, $(PROFILE_1_RTJAR_EXCLUDE_TYPES)) \
453837141fac 8001931: The new build system whitespace cleanup
ihse
parents: 19570
diff changeset
   281
      $(PROFILE_2_RTJAR_INCLUDE_PACKAGES) \
453837141fac 8001931: The new build system whitespace cleanup
ihse
parents: 19570
diff changeset
   282
      $(call class_list, $(PROFILE_2_RTJAR_INCLUDE_TYPES)) \
453837141fac 8001931: The new build system whitespace cleanup
ihse
parents: 19570
diff changeset
   283
      $(PROFILE_3_RTJAR_INCLUDE_PACKAGES) \
453837141fac 8001931: The new build system whitespace cleanup
ihse
parents: 19570
diff changeset
   284
      $(call class_list, $(PROFILE_3_RTJAR_INCLUDE_TYPES)) \
453837141fac 8001931: The new build system whitespace cleanup
ihse
parents: 19570
diff changeset
   285
      $(FULL_JRE_RTJAR_INCLUDE_PACKAGES) \
453837141fac 8001931: The new build system whitespace cleanup
ihse
parents: 19570
diff changeset
   286
      $(call class_list, $(FULL_JRE_RTJAR_INCLUDE_TYPES))
15681
8ca785029fe2 8004265: Add build support for Compact Profiles
dholmes
parents:
diff changeset
   287
  RT_JAR_INCLUDE_TYPES := \
20547
453837141fac 8001931: The new build system whitespace cleanup
ihse
parents: 19570
diff changeset
   288
      $(call class_list, $(PROFILE_1_RTJAR_INCLUDE_TYPES))
15681
8ca785029fe2 8004265: Add build support for Compact Profiles
dholmes
parents:
diff changeset
   289
  PROFILE_INCLUDE_METAINF_SERVICES := \
20547
453837141fac 8001931: The new build system whitespace cleanup
ihse
parents: 19570
diff changeset
   290
      $(PROFILE_1_INCLUDE_METAINF_SERVICES)
15681
8ca785029fe2 8004265: Add build support for Compact Profiles
dholmes
parents:
diff changeset
   291
endif
8ca785029fe2 8004265: Add build support for Compact Profiles
dholmes
parents:
diff changeset
   292
ifeq ($(PROFILE), profile_2)
8ca785029fe2 8004265: Add build support for Compact Profiles
dholmes
parents:
diff changeset
   293
  RT_JAR_EXCLUDES += \
20547
453837141fac 8001931: The new build system whitespace cleanup
ihse
parents: 19570
diff changeset
   294
      $(call class_list, $(PROFILE_2_RTJAR_EXCLUDE_TYPES)) \
453837141fac 8001931: The new build system whitespace cleanup
ihse
parents: 19570
diff changeset
   295
      $(PROFILE_3_RTJAR_INCLUDE_PACKAGES) \
453837141fac 8001931: The new build system whitespace cleanup
ihse
parents: 19570
diff changeset
   296
      $(call class_list, $(PROFILE_3_RTJAR_INCLUDE_TYPES)) \
453837141fac 8001931: The new build system whitespace cleanup
ihse
parents: 19570
diff changeset
   297
      $(FULL_JRE_RTJAR_INCLUDE_PACKAGES) \
453837141fac 8001931: The new build system whitespace cleanup
ihse
parents: 19570
diff changeset
   298
      $(call class_list, $(FULL_JRE_RTJAR_INCLUDE_TYPES))
15681
8ca785029fe2 8004265: Add build support for Compact Profiles
dholmes
parents:
diff changeset
   299
  RT_JAR_INCLUDE_TYPES := \
20547
453837141fac 8001931: The new build system whitespace cleanup
ihse
parents: 19570
diff changeset
   300
      $(call class_list, $(PROFILE_1_RTJAR_INCLUDE_TYPES)) \
453837141fac 8001931: The new build system whitespace cleanup
ihse
parents: 19570
diff changeset
   301
      $(call class_list, $(PROFILE_2_RTJAR_INCLUDE_TYPES))
15681
8ca785029fe2 8004265: Add build support for Compact Profiles
dholmes
parents:
diff changeset
   302
  PROFILE_INCLUDE_METAINF_SERVICES := \
20547
453837141fac 8001931: The new build system whitespace cleanup
ihse
parents: 19570
diff changeset
   303
      $(PROFILE_1_INCLUDE_METAINF_SERVICES) \
453837141fac 8001931: The new build system whitespace cleanup
ihse
parents: 19570
diff changeset
   304
      $(PROFILE_2_INCLUDE_METAINF_SERVICES)
15681
8ca785029fe2 8004265: Add build support for Compact Profiles
dholmes
parents:
diff changeset
   305
endif
8ca785029fe2 8004265: Add build support for Compact Profiles
dholmes
parents:
diff changeset
   306
ifeq ($(PROFILE), profile_3)
8ca785029fe2 8004265: Add build support for Compact Profiles
dholmes
parents:
diff changeset
   307
  RT_JAR_EXCLUDES += \
20547
453837141fac 8001931: The new build system whitespace cleanup
ihse
parents: 19570
diff changeset
   308
      $(call class_list, $(PROFILE_3_RTJAR_EXCLUDE_TYPES)) \
453837141fac 8001931: The new build system whitespace cleanup
ihse
parents: 19570
diff changeset
   309
      $(FULL_JRE_RTJAR_INCLUDE_PACKAGES) \
453837141fac 8001931: The new build system whitespace cleanup
ihse
parents: 19570
diff changeset
   310
      $(call class_list, $(FULL_JRE_RTJAR_INCLUDE_TYPES))
15681
8ca785029fe2 8004265: Add build support for Compact Profiles
dholmes
parents:
diff changeset
   311
  RT_JAR_INCLUDE_TYPES := \
20547
453837141fac 8001931: The new build system whitespace cleanup
ihse
parents: 19570
diff changeset
   312
      $(call class_list, $(PROFILE_1_RTJAR_INCLUDE_TYPES)) \
453837141fac 8001931: The new build system whitespace cleanup
ihse
parents: 19570
diff changeset
   313
      $(call class_list, $(PROFILE_2_RTJAR_INCLUDE_TYPES)) \
453837141fac 8001931: The new build system whitespace cleanup
ihse
parents: 19570
diff changeset
   314
      $(call class_list, $(PROFILE_3_RTJAR_INCLUDE_TYPES))
15681
8ca785029fe2 8004265: Add build support for Compact Profiles
dholmes
parents:
diff changeset
   315
  PROFILE_INCLUDE_METAINF_SERVICES := \
20547
453837141fac 8001931: The new build system whitespace cleanup
ihse
parents: 19570
diff changeset
   316
      $(PROFILE_1_INCLUDE_METAINF_SERVICES) \
453837141fac 8001931: The new build system whitespace cleanup
ihse
parents: 19570
diff changeset
   317
      $(PROFILE_2_INCLUDE_METAINF_SERVICES) \
453837141fac 8001931: The new build system whitespace cleanup
ihse
parents: 19570
diff changeset
   318
      $(PROFILE_3_INCLUDE_METAINF_SERVICES)
15681
8ca785029fe2 8004265: Add build support for Compact Profiles
dholmes
parents:
diff changeset
   319
endif
8ca785029fe2 8004265: Add build support for Compact Profiles
dholmes
parents:
diff changeset
   320
8ca785029fe2 8004265: Add build support for Compact Profiles
dholmes
parents:
diff changeset
   321
# Filter out non-OpenJDK services
8ca785029fe2 8004265: Add build support for Compact Profiles
dholmes
parents:
diff changeset
   322
ifdef OPENJDK
20547
453837141fac 8001931: The new build system whitespace cleanup
ihse
parents: 19570
diff changeset
   323
  EXCLUDED_SERVICES := META-INF/services/javax.script.ScriptEngineFactory
453837141fac 8001931: The new build system whitespace cleanup
ihse
parents: 19570
diff changeset
   324
  PROFILE_INCLUDE_METAINF_SERVICES := $(filter-out $(EXCLUDED_SERVICES), $(PROFILE_INCLUDE_METAINF_SERVICES))
15681
8ca785029fe2 8004265: Add build support for Compact Profiles
dholmes
parents:
diff changeset
   325
endif
8ca785029fe2 8004265: Add build support for Compact Profiles
dholmes
parents:
diff changeset
   326
8ca785029fe2 8004265: Add build support for Compact Profiles
dholmes
parents:
diff changeset
   327
8ca785029fe2 8004265: Add build support for Compact Profiles
dholmes
parents:
diff changeset
   328
endif # profile