hg: openjfx/9-dev/rt: RT-39975: Add Packager support for AppCDS

kevin.rushforth at oracle.com kevin.rushforth at oracle.com
Tue Mar 31 00:27:40 UTC 2015


Changeset: 96ee85199d13
Author:    Danno Ferrin (shemnon) <danno.ferrin at oracle.com>
Date:      2015-03-30 18:08 -0600
URL:       http://hg.openjdk.java.net/openjfx/9-dev/rt/rev/96ee85199d13

RT-39975: Add Packager support for AppCDS
Reviewed-by: cbensen, kcr
Contributed-by: cbensen, shemnon

! modules/fxpackager/src/main/java/com/oracle/tools/packager/AbstractBundler.java
+ modules/fxpackager/src/main/java/com/oracle/tools/packager/AbstractImageBundler.java
! modules/fxpackager/src/main/java/com/oracle/tools/packager/RelativeFileSet.java
! modules/fxpackager/src/main/java/com/oracle/tools/packager/StandardBundlerParam.java
! modules/fxpackager/src/main/java/com/oracle/tools/packager/linux/LinuxAppBundler.java
! modules/fxpackager/src/main/java/com/oracle/tools/packager/linux/LinuxDebBundler.java
! modules/fxpackager/src/main/java/com/oracle/tools/packager/linux/LinuxRpmBundler.java
! modules/fxpackager/src/main/java/com/oracle/tools/packager/mac/MacAppBundler.java
! modules/fxpackager/src/main/java/com/oracle/tools/packager/windows/WinAppBundler.java
! modules/fxpackager/src/main/java/com/oracle/tools/packager/windows/WinExeBundler.java
! modules/fxpackager/src/main/java/com/oracle/tools/packager/windows/WinMsiBundler.java
! modules/fxpackager/src/main/java/com/sun/javafx/tools/packager/DeployParams.java
! modules/fxpackager/src/main/native/library/common/Exports.cpp
! modules/fxpackager/src/main/native/library/common/FilePath.cpp
! modules/fxpackager/src/main/native/library/common/FilePath.h
! modules/fxpackager/src/main/native/library/common/GenericPlatform.cpp
! modules/fxpackager/src/main/native/library/common/GenericPlatform.h
! modules/fxpackager/src/main/native/library/common/Helpers.cpp
! modules/fxpackager/src/main/native/library/common/Helpers.h
+ modules/fxpackager/src/main/native/library/common/IniFile.cpp
+ modules/fxpackager/src/main/native/library/common/IniFile.h
! modules/fxpackager/src/main/native/library/common/Java.cpp
! modules/fxpackager/src/main/native/library/common/Java.h
! modules/fxpackager/src/main/native/library/common/JavaUserPreferences.cpp
! modules/fxpackager/src/main/native/library/common/JavaUserPreferences.h
! modules/fxpackager/src/main/native/library/common/JavaVirtualMachine.cpp
! modules/fxpackager/src/main/native/library/common/JavaVirtualMachine.h
! modules/fxpackager/src/main/native/library/common/LinuxPlatform.cpp
! modules/fxpackager/src/main/native/library/common/LinuxPlatform.h
! modules/fxpackager/src/main/native/library/common/Lock.h
! modules/fxpackager/src/main/native/library/common/MacPlatform.h
! modules/fxpackager/src/main/native/library/common/MacPlatform.mm
! modules/fxpackager/src/main/native/library/common/Macros.cpp
! modules/fxpackager/src/main/native/library/common/Messages.cpp
! modules/fxpackager/src/main/native/library/common/Messages.h
+ modules/fxpackager/src/main/native/library/common/OrderedMap.h
! modules/fxpackager/src/main/native/library/common/Package.cpp
! modules/fxpackager/src/main/native/library/common/Package.h
! modules/fxpackager/src/main/native/library/common/Platform.cpp
! modules/fxpackager/src/main/native/library/common/Platform.h
! modules/fxpackager/src/main/native/library/common/PlatformString.cpp
! modules/fxpackager/src/main/native/library/common/PlatformString.h
! modules/fxpackager/src/main/native/library/common/PosixPlatform.cpp
! modules/fxpackager/src/main/native/library/common/PosixPlatform.h
! modules/fxpackager/src/main/native/library/common/PropertyFile.cpp
! modules/fxpackager/src/main/native/library/common/PropertyFile.h
! modules/fxpackager/src/main/native/library/common/WindowsPlatform.cpp
! modules/fxpackager/src/main/native/library/common/WindowsPlatform.h
! modules/fxpackager/src/main/native/library/common/main.cpp
! modules/fxpackager/src/main/native/tests/linux/library/packager/nbproject/Makefile-Debug.mk
! modules/fxpackager/src/main/native/tests/linux/library/packager/nbproject/Makefile-Release.mk
! modules/fxpackager/src/main/native/tests/linux/library/packager/nbproject/configurations.xml
! modules/fxpackager/src/main/native/tests/mac/library/packager/libpackager.xcodeproj/project.pbxproj
! modules/fxpackager/src/main/native/tests/win/library/library.vcxproj
! modules/fxpackager/src/main/resources/com/oracle/tools/packager/AbstractBundler.properties
+ modules/fxpackager/src/main/resources/com/oracle/tools/packager/AbstractImageBundler.properties
! modules/fxpackager/src/main/resources/com/oracle/tools/packager/StandardBundlerParam.properties
! modules/fxpackager/src/main/resources/com/oracle/tools/packager/linux/LinuxAppBundler.properties
! modules/fxpackager/src/main/resources/com/oracle/tools/packager/linux/template.postinst
! modules/fxpackager/src/main/resources/com/oracle/tools/packager/linux/template.spec
+ modules/fxpackager/src/main/resources/com/oracle/tools/packager/mac/Info-lite.plist.template
! modules/fxpackager/src/main/resources/com/oracle/tools/packager/mac/MacAppBundler.properties
! modules/fxpackager/src/main/resources/com/oracle/tools/packager/windows/WinAppBundler.properties
! modules/fxpackager/src/main/resources/com/oracle/tools/packager/windows/template.iss
! modules/fxpackager/src/main/resources/com/oracle/tools/packager/windows/template.wxs
! modules/fxpackager/src/test/java/com/oracle/tools/packager/CLITest.java
! modules/fxpackager/src/test/java/com/oracle/tools/packager/linux/LinuxAppBundlerTest.java
! modules/fxpackager/src/test/java/com/oracle/tools/packager/linux/LinuxDebBundlerTest.java
! modules/fxpackager/src/test/java/com/oracle/tools/packager/linux/LinuxRpmBundlerTest.java
! modules/fxpackager/src/test/java/com/oracle/tools/packager/mac/MacAppBundlerTest.java
! modules/fxpackager/src/test/java/com/oracle/tools/packager/mac/MacAppStoreBundlerTest.java
! modules/fxpackager/src/test/java/com/oracle/tools/packager/windows/WinAppBundlerTest.java
! modules/fxpackager/src/test/java/com/oracle/tools/packager/windows/WinExeBundlerTest.java
! modules/fxpackager/src/test/java/com/oracle/tools/packager/windows/WinMsiBundlerTest.java
! modules/fxpackager/src/test/java/hello/TestPackager.java



More information about the openjfx-changes mailing list