author | plevart |
Mon, 12 May 2014 17:34:29 +0200 | |
changeset 24369 | 9355f02a63a3 |
parent 23010 | 6dadb192ad81 |
child 25859 | 3317bb8137f4 |
permissions | -rw-r--r-- |
12317
9670c1610c53
7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff
changeset
|
1 |
# |
23010
6dadb192ad81
8029235: Update copyright year to match last edit in jdk8 jdk repository for 2013
lana
parents:
22966
diff
changeset
|
2 |
# Copyright (c) 2011, 2013, Oracle and/or its affiliates. All rights reserved. |
12317
9670c1610c53
7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff
changeset
|
3 |
# DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. |
9670c1610c53
7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff
changeset
|
4 |
# |
9670c1610c53
7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff
changeset
|
5 |
# This code is free software; you can redistribute it and/or modify it |
9670c1610c53
7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff
changeset
|
6 |
# under the terms of the GNU General Public License version 2 only, as |
9670c1610c53
7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff
changeset
|
7 |
# published by the Free Software Foundation. Oracle designates this |
9670c1610c53
7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff
changeset
|
8 |
# particular file as subject to the "Classpath" exception as provided |
9670c1610c53
7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff
changeset
|
9 |
# by Oracle in the LICENSE file that accompanied this code. |
9670c1610c53
7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff
changeset
|
10 |
# |
9670c1610c53
7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff
changeset
|
11 |
# This code is distributed in the hope that it will be useful, but WITHOUT |
9670c1610c53
7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff
changeset
|
12 |
# ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or |
9670c1610c53
7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff
changeset
|
13 |
# FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License |
9670c1610c53
7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff
changeset
|
14 |
# version 2 for more details (a copy is included in the LICENSE file that |
9670c1610c53
7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff
changeset
|
15 |
# accompanied this code). |
9670c1610c53
7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff
changeset
|
16 |
# |
9670c1610c53
7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff
changeset
|
17 |
# You should have received a copy of the GNU General Public License version |
9670c1610c53
7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff
changeset
|
18 |
# 2 along with this work; if not, write to the Free Software Foundation, |
9670c1610c53
7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff
changeset
|
19 |
# Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA. |
9670c1610c53
7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff
changeset
|
20 |
# |
9670c1610c53
7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff
changeset
|
21 |
# Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA |
9670c1610c53
7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff
changeset
|
22 |
# or visit www.oracle.com if you need additional information or have any |
9670c1610c53
7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff
changeset
|
23 |
# questions. |
9670c1610c53
7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff
changeset
|
24 |
# |
9670c1610c53
7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff
changeset
|
25 |
|
15683
3acd10709925
8003256: (profiles) Add support for profile identification
alanb
parents:
14343
diff
changeset
|
26 |
include ProfileNames.gmk |
3acd10709925
8003256: (profiles) Add support for profile identification
alanb
parents:
14343
diff
changeset
|
27 |
|
12317
9670c1610c53
7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff
changeset
|
28 |
########################################################################################## |
9670c1610c53
7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff
changeset
|
29 |
# Install the launcher name, release version string, full version |
9670c1610c53
7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff
changeset
|
30 |
# string and the runtime name into the Version.java file. |
9670c1610c53
7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff
changeset
|
31 |
# To be printed by java -version |
9670c1610c53
7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff
changeset
|
32 |
|
15683
3acd10709925
8003256: (profiles) Add support for profile identification
alanb
parents:
14343
diff
changeset
|
33 |
$(JDK_OUTPUTDIR)/gensrc/sun/misc/Version.java \ |
3acd10709925
8003256: (profiles) Add support for profile identification
alanb
parents:
14343
diff
changeset
|
34 |
$(PROFILE_VERSION_JAVA_TARGETS): \ |
20547 | 35 |
$(JDK_TOPDIR)/src/share/classes/sun/misc/Version.java.template |
12317
9670c1610c53
7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff
changeset
|
36 |
$(MKDIR) -p $(@D) |
13702 | 37 |
$(RM) $@ $@.tmp |
15683
3acd10709925
8003256: (profiles) Add support for profile identification
alanb
parents:
14343
diff
changeset
|
38 |
$(ECHO) Generating sun/misc/Version.java $(call profile_version_name, $@) |
12317
9670c1610c53
7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff
changeset
|
39 |
$(SED) -e 's/@@launcher_name@@/$(LAUNCHER_NAME)/g' \ |
20547 | 40 |
-e 's/@@java_version@@/$(RELEASE)/g' \ |
41 |
-e 's/@@java_runtime_version@@/$(FULL_VERSION)/g' \ |
|
42 |
-e 's/@@java_runtime_name@@/$(RUNTIME_NAME)/g' \ |
|
43 |
-e 's/@@java_profile_name@@/$(call profile_version_name, $@)/g' \ |
|
44 |
$< > $@.tmp |
|
13702 | 45 |
$(MV) $@.tmp $@ |
12317
9670c1610c53
7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff
changeset
|
46 |
|
15683
3acd10709925
8003256: (profiles) Add support for profile identification
alanb
parents:
14343
diff
changeset
|
47 |
GENSRC_MISC += $(JDK_OUTPUTDIR)/gensrc/sun/misc/Version.java \ |
3acd10709925
8003256: (profiles) Add support for profile identification
alanb
parents:
14343
diff
changeset
|
48 |
$(PROFILE_VERSION_JAVA_TARGETS) |
12317
9670c1610c53
7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff
changeset
|
49 |
|
9670c1610c53
7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff
changeset
|
50 |
########################################################################################## |
9670c1610c53
7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff
changeset
|
51 |
# Version file for jconsole |
9670c1610c53
7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff
changeset
|
52 |
|
14231 | 53 |
$(JDK_OUTPUTDIR)/gensrc/sun/tools/jconsole/Version.java: \ |
20547 | 54 |
$(JDK_TOPDIR)/src/share/classes/sun/tools/jconsole/Version.java.template |
12317
9670c1610c53
7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff
changeset
|
55 |
$(MKDIR) -p $(@D) |
13702 | 56 |
$(RM) $@ $@.tmp |
14231 | 57 |
$(ECHO) $(LOG_INFO) Generating sun/tools/jconsole/Version.java |
13702 | 58 |
$(SED) -e 's/@@jconsole_version@@/$(FULL_VERSION)/g' $< > $@.tmp |
59 |
$(MV) $@.tmp $@ |
|
12317
9670c1610c53
7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff
changeset
|
60 |
|
14231 | 61 |
GENSRC_MISC += $(JDK_OUTPUTDIR)/gensrc/sun/tools/jconsole/Version.java |
12317
9670c1610c53
7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff
changeset
|
62 |
|
9670c1610c53
7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff
changeset
|
63 |
########################################################################################## |
9670c1610c53
7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff
changeset
|
64 |
|
14231 | 65 |
GENSRC_MISC += $(JDK_OUTPUTDIR)/gensrc/sun/nio/ch/SocketOptionRegistry.java |
12892 | 66 |
|
22966 | 67 |
GENSRC_SOR_SRC := $(JDK_TOPDIR)/make/src/native/genconstants/ch |
12892 | 68 |
GENSRC_SOR_SRC_FILE := genSocketOptionRegistry.c |
22966 | 69 |
GENSRC_SOR_BIN := $(JDK_OUTPUTDIR)/btnative/genSocketOptionRegistry |
12892 | 70 |
|
71 |
SOR_COPYRIGHT_YEARS = $(shell $(CAT) $(GENSRC_SOR_SRC)/$(GENSRC_SOR_SRC_FILE) | \ |
|
20547 | 72 |
$(NAWK) '/^.*Copyright.*Oracle/ { printf "%s %s",$$4,$$5 }') |
12892 | 73 |
|
20547 | 74 |
$(eval $(call SetupNativeCompilation,BUILD_GENSRC_SOR_EXE, \ |
75 |
SRC := $(GENSRC_SOR_SRC), \ |
|
76 |
INCLUDE_FILES := $(GENSRC_SOR_SRC_FILE), \ |
|
77 |
LANG := C, \ |
|
78 |
CC := $(BUILD_CC), \ |
|
79 |
LDEXE := $(BUILD_LD), \ |
|
80 |
OBJECT_DIR := $(GENSRC_SOR_BIN), \ |
|
81 |
OUTPUT_DIR := $(GENSRC_SOR_BIN), \ |
|
82 |
PROGRAM := genSocketOptionRegistry)) |
|
13164 | 83 |
|
22966 | 84 |
SOR_PREGEN_FILE := $(JDK_TOPDIR)/src/closed/solaris/classes/sun/nio/ch/SocketOptionRegistry-$(OPENJDK_TARGET_OS)-$(OPENJDK_TARGET_CPU_ARCH).java.template |
13702 | 85 |
|
22966 | 86 |
ifeq ($(wildcard $(SOR_PREGEN_FILE)), ) |
20547 | 87 |
$(JDK_OUTPUTDIR)/gensrc/sun/nio/ch/SocketOptionRegistry.java: $(BUILD_GENSRC_SOR_EXE) |
13164 | 88 |
$(MKDIR) -p $(@D) |
13702 | 89 |
$(RM) $@ $@.tmp |
21805 | 90 |
NAWK="$(NAWK)" SH="$(SH)" $(SH) -e $(JDK_TOPDIR)/make/scripts/addNotices.sh "$(SOR_COPYRIGHT_YEARS)" > $@.tmp |
13164 | 91 |
$(BUILD_GENSRC_SOR_EXE) >> $@.tmp |
92 |
$(MV) $@.tmp $@ |
|
93 |
else |
|
22966 | 94 |
$(JDK_OUTPUTDIR)/gensrc/sun/nio/ch/SocketOptionRegistry.java: $(SOR_PREGEN_FILE) |
16636
1cc691bcfe50
8008373: JFR JTReg tests fail with CompilationError on MacOSX; missing '._sunec.jar'
erikj
parents:
15688
diff
changeset
|
95 |
$(call install-file) |
13164 | 96 |
endif |
12892 | 97 |
|
98 |
########################################################################################## |
|
99 |
||
20547 | 100 |
ifneq ($(OPENJDK_TARGET_OS), windows) |
12892 | 101 |
|
20547 | 102 |
GENSRC_MISC += $(JDK_OUTPUTDIR)/gensrc/sun/nio/fs/UnixConstants.java |
12892 | 103 |
|
22966 | 104 |
GENSRC_UC_SRC := $(JDK_TOPDIR)/make/src/native/genconstants/fs |
20547 | 105 |
GENSRC_UC_SRC_FILE := genUnixConstants.c |
22966 | 106 |
GENSRC_UC_BIN := $(JDK_OUTPUTDIR)/btnative/genUnixConstants |
12892 | 107 |
|
20547 | 108 |
UC_COPYRIGHT_YEARS = $(shell $(CAT) $(GENSRC_UC_SRC)/$(GENSRC_UC_SRC_FILE) | \ |
109 |
$(NAWK) '/^.*Copyright.*Oracle/ { printf "%s %s",$$4,$$5 }') |
|
12892 | 110 |
|
20547 | 111 |
$(eval $(call SetupNativeCompilation,BUILD_GENSRC_UC_EXE, \ |
112 |
SRC := $(GENSRC_UC_SRC), \ |
|
113 |
INCLUDE_FILES := $(GENSRC_UC_SRC_FILE), \ |
|
114 |
LANG := C, \ |
|
115 |
CC := $(BUILD_CC), \ |
|
116 |
LDEXE := $(BUILD_CC), \ |
|
117 |
CFLAGS := $(filter -D%, $(CFLAGS_JDKEXE)), \ |
|
118 |
OBJECT_DIR := $(GENSRC_UC_BIN), \ |
|
119 |
OUTPUT_DIR := $(GENSRC_UC_BIN), \ |
|
120 |
PROGRAM := genUnixConstants)) |
|
13164 | 121 |
|
22966 | 122 |
UC_PREGEN_FILE := $(JDK_TOPDIR)/src/closed/solaris/classes/sun/nio/fs/UnixConstants-$(OPENJDK_TARGET_OS)-$(OPENJDK_TARGET_CPU_ARCH).java.template |
13702 | 123 |
|
22966 | 124 |
ifeq ($(wildcard $(UC_PREGEN_FILE)), ) |
20547 | 125 |
$(JDK_OUTPUTDIR)/gensrc/sun/nio/fs/UnixConstants.java: $(BUILD_GENSRC_UC_EXE) |
13164 | 126 |
$(MKDIR) -p $(@D) |
13702 | 127 |
$(RM) $@ $@.tmp |
21805 | 128 |
NAWK="$(NAWK)" SH="$(SH)" $(SH) -e $(JDK_TOPDIR)/make/scripts/addNotices.sh "$(UC_COPYRIGHT_YEARS)" > $@.tmp |
13164 | 129 |
$(BUILD_GENSRC_UC_EXE) >> $@.tmp |
130 |
$(MV) $@.tmp $@ |
|
20547 | 131 |
else |
22966 | 132 |
$(JDK_OUTPUTDIR)/gensrc/sun/nio/fs/UnixConstants.java: $(UC_PREGEN_FILE) |
16636
1cc691bcfe50
8008373: JFR JTReg tests fail with CompilationError on MacOSX; missing '._sunec.jar'
erikj
parents:
15688
diff
changeset
|
133 |
$(call install-file) |
20547 | 134 |
endif |
12892 | 135 |
|
136 |
endif |
|
137 |
||
138 |
########################################################################################## |
|
139 |
||
20547 | 140 |
ifeq ($(OPENJDK_TARGET_OS), solaris) |
12892 | 141 |
|
20547 | 142 |
GENSRC_MISC += $(JDK_OUTPUTDIR)/gensrc/sun/nio/fs/SolarisConstants.java |
12892 | 143 |
|
22966 | 144 |
GENSRC_SOL_SRC := $(JDK_TOPDIR)/make/src/native/genconstants/fs |
20547 | 145 |
GENSRC_SOL_SRC_FILE := genSolarisConstants.c |
22966 | 146 |
GENSRC_SOL_BIN := $(JDK_OUTPUTDIR)/btnative/genSolarisConstants |
12892 | 147 |
|
20547 | 148 |
SOL_COPYRIGHT_YEARS = $(shell $(CAT) $(GENSRC_SOL_SRC)/$(GENSRC_SOL_SRC_FILE) | \ |
149 |
$(NAWK) '/^.*Copyright.*Oracle/ { printf "%s %s",$$4,$$5 }') |
|
12892 | 150 |
|
20547 | 151 |
$(eval $(call SetupNativeCompilation,BUILD_GENSRC_SOL_EXE, \ |
152 |
SRC := $(GENSRC_SOL_SRC), \ |
|
153 |
INCLUDE_FILES := $(GENSRC_SOL_SRC_FILE), \ |
|
154 |
LANG := C, \ |
|
155 |
CC := $(BUILD_CC), \ |
|
156 |
LDEXE := $(BUILD_CC), \ |
|
157 |
OBJECT_DIR := $(GENSRC_SOL_BIN), \ |
|
158 |
OUTPUT_DIR := $(GENSRC_SOL_BIN), \ |
|
159 |
PROGRAM := genSolarisConstants)) |
|
13164 | 160 |
|
20547 | 161 |
$(JDK_OUTPUTDIR)/gensrc/sun/nio/fs/SolarisConstants.java: $(BUILD_GENSRC_SOL_EXE) |
13164 | 162 |
$(MKDIR) -p $(@D) |
13702 | 163 |
$(RM) $@ $@.tmp |
21805 | 164 |
NAWK="$(NAWK)" SH="$(SH)" $(SH) -e $(JDK_TOPDIR)/make/scripts/addNotices.sh "$(SOL_COPYRIGHT_YEARS)" > $@.tmp |
13164 | 165 |
$(BUILD_GENSRC_SOL_EXE) >> $@.tmp |
166 |
$(MV) $@.tmp $@ |
|
167 |
||
12892 | 168 |
|
169 |
endif |
|
15324
74584166bb07
8000839: Integrate the Java Access Bridge with Java Runtime
raginip
parents:
14343
diff
changeset
|
170 |
|
74584166bb07
8000839: Integrate the Java Access Bridge with Java Runtime
raginip
parents:
14343
diff
changeset
|
171 |
########################################################################################## |
74584166bb07
8000839: Integrate the Java Access Bridge with Java Runtime
raginip
parents:
14343
diff
changeset
|
172 |
|
74584166bb07
8000839: Integrate the Java Access Bridge with Java Runtime
raginip
parents:
14343
diff
changeset
|
173 |
ifndef OPENJDK |
20547 | 174 |
ifeq ($(OPENJDK_TARGET_OS), windows) |
15324
74584166bb07
8000839: Integrate the Java Access Bridge with Java Runtime
raginip
parents:
14343
diff
changeset
|
175 |
|
74584166bb07
8000839: Integrate the Java Access Bridge with Java Runtime
raginip
parents:
14343
diff
changeset
|
176 |
AB_GENSRC_DIR := $(JDK_OUTPUTDIR)/gensrc_ab |
74584166bb07
8000839: Integrate the Java Access Bridge with Java Runtime
raginip
parents:
14343
diff
changeset
|
177 |
AB_SRC_DIR := $(JDK_TOPDIR)/src/closed/windows/classes/com/sun/java/accessibility |
74584166bb07
8000839: Integrate the Java Access Bridge with Java Runtime
raginip
parents:
14343
diff
changeset
|
178 |
|
74584166bb07
8000839: Integrate the Java Access Bridge with Java Runtime
raginip
parents:
14343
diff
changeset
|
179 |
ifeq ($(OPENJDK_TARGET_CPU_BITS), 32) |
20547 | 180 |
$(AB_GENSRC_DIR)/32bit/com/sun/java/accessibility/AccessBridgeLoader.java: \ |
181 |
$(AB_SRC_DIR)/32bit/AccessBridgeLoader.java |
|
20102
30b8aaa80ae2
8011955: Lunar screen reader crashes intermittently in WindowsAccessBridge-32.DLL
ptbrunet
parents:
16636
diff
changeset
|
182 |
$(install-file) |
30b8aaa80ae2
8011955: Lunar screen reader crashes intermittently in WindowsAccessBridge-32.DLL
ptbrunet
parents:
16636
diff
changeset
|
183 |
|
20547 | 184 |
$(AB_GENSRC_DIR)/32bit/com/sun/java/accessibility/AccessBridge.java: \ |
185 |
$(AB_SRC_DIR)/AccessBridge.java |
|
20102
30b8aaa80ae2
8011955: Lunar screen reader crashes intermittently in WindowsAccessBridge-32.DLL
ptbrunet
parents:
16636
diff
changeset
|
186 |
$(install-file) |
30b8aaa80ae2
8011955: Lunar screen reader crashes intermittently in WindowsAccessBridge-32.DLL
ptbrunet
parents:
16636
diff
changeset
|
187 |
|
20547 | 188 |
$(AB_GENSRC_DIR)/legacy/com/sun/java/accessibility/AccessBridgeLoader.java: \ |
189 |
$(AB_SRC_DIR)/legacy/AccessBridgeLoader.java |
|
15324
74584166bb07
8000839: Integrate the Java Access Bridge with Java Runtime
raginip
parents:
14343
diff
changeset
|
190 |
$(install-file) |
74584166bb07
8000839: Integrate the Java Access Bridge with Java Runtime
raginip
parents:
14343
diff
changeset
|
191 |
|
20547 | 192 |
$(AB_GENSRC_DIR)/legacy/com/sun/java/accessibility/AccessBridge.java: \ |
193 |
$(AB_SRC_DIR)/AccessBridge.java |
|
15324
74584166bb07
8000839: Integrate the Java Access Bridge with Java Runtime
raginip
parents:
14343
diff
changeset
|
194 |
$(install-file) |
74584166bb07
8000839: Integrate the Java Access Bridge with Java Runtime
raginip
parents:
14343
diff
changeset
|
195 |
|
20547 | 196 |
GENSRC_MISC += $(AB_GENSRC_DIR)/32bit/com/sun/java/accessibility/AccessBridgeLoader.java \ |
197 |
$(AB_GENSRC_DIR)/legacy/com/sun/java/accessibility/AccessBridgeLoader.java \ |
|
198 |
$(AB_GENSRC_DIR)/32bit/com/sun/java/accessibility/AccessBridge.java \ |
|
199 |
$(AB_GENSRC_DIR)/legacy/com/sun/java/accessibility/AccessBridge.java |
|
15324
74584166bb07
8000839: Integrate the Java Access Bridge with Java Runtime
raginip
parents:
14343
diff
changeset
|
200 |
|
74584166bb07
8000839: Integrate the Java Access Bridge with Java Runtime
raginip
parents:
14343
diff
changeset
|
201 |
else |
20547 | 202 |
$(AB_GENSRC_DIR)/64bit/com/sun/java/accessibility/AccessBridgeLoader.java: \ |
203 |
$(AB_SRC_DIR)/64bit/AccessBridgeLoader.java |
|
15324
74584166bb07
8000839: Integrate the Java Access Bridge with Java Runtime
raginip
parents:
14343
diff
changeset
|
204 |
$(install-file) |
74584166bb07
8000839: Integrate the Java Access Bridge with Java Runtime
raginip
parents:
14343
diff
changeset
|
205 |
|
20547 | 206 |
$(AB_GENSRC_DIR)/64bit/com/sun/java/accessibility/AccessBridge.java: \ |
207 |
$(AB_SRC_DIR)/AccessBridge.java |
|
20171
099045062d79
8025160: Recent Java Accessibility Bridge push has make failures
ptbrunet
parents:
20102
diff
changeset
|
208 |
$(install-file) |
099045062d79
8025160: Recent Java Accessibility Bridge push has make failures
ptbrunet
parents:
20102
diff
changeset
|
209 |
|
20547 | 210 |
GENSRC_MISC += $(AB_GENSRC_DIR)/64bit/com/sun/java/accessibility/AccessBridgeLoader.java \ |
211 |
$(AB_GENSRC_DIR)/64bit/com/sun/java/accessibility/AccessBridge.java |
|
15324
74584166bb07
8000839: Integrate the Java Access Bridge with Java Runtime
raginip
parents:
14343
diff
changeset
|
212 |
|
74584166bb07
8000839: Integrate the Java Access Bridge with Java Runtime
raginip
parents:
14343
diff
changeset
|
213 |
endif |
20547 | 214 |
endif |
15324
74584166bb07
8000839: Integrate the Java Access Bridge with Java Runtime
raginip
parents:
14343
diff
changeset
|
215 |
endif |
74584166bb07
8000839: Integrate the Java Access Bridge with Java Runtime
raginip
parents:
14343
diff
changeset
|
216 |
|
20102
30b8aaa80ae2
8011955: Lunar screen reader crashes intermittently in WindowsAccessBridge-32.DLL
ptbrunet
parents:
16636
diff
changeset
|
217 |
########################################################################################## |