< prev index next >

make/conf/jib-profiles.js

Print this page




 748         profiles["run-test-jprt"] = concatObjects(profiles["run-test-jprt"], macosxRunTestExtra);
 749         profiles["run-test-prebuilt"] = concatObjects(profiles["run-test-prebuilt"], macosxRunTestExtra);
 750     }
 751 
 752     // Generate the missing platform attributes
 753     profiles = generatePlatformAttributes(profiles);
 754     profiles = generateDefaultMakeTargetsConfigureArg(common, profiles);
 755     return profiles;
 756 };
 757 
 758 /**
 759  * Generate the dependencies part of the configuration
 760  *
 761  * @param input External data to use for generating the configuration
 762  * @param common The common values
 763  * @returns {{}} Dependencies part of configuration
 764  */
 765 var getJibProfilesDependencies = function (input, common) {
 766 
 767     var devkit_platform_revisions = {
 768         linux_x64: "gcc4.9.2-OEL6.4+1.2",
 769         macosx_x64: "Xcode6.3-MacOSX10.9+1.0",
 770         solaris_x64: "SS12u4-Solaris11u1+1.0",
 771         solaris_sparcv9: "SS12u4-Solaris11u1+1.1",
 772         windows_x64: "VS2013SP4+1.0",
 773         linux_aarch64: "gcc-linaro-aarch64-linux-gnu-4.8-2013.11_linux+1.0",
 774         linux_arm: (input.profile != null && input.profile.indexOf("hflt") >= 0
 775                     ? "gcc-linaro-arm-linux-gnueabihf-raspbian-2012.09-20120921_linux+1.0"
 776                     : "arm-linaro-4.7+1.0")
 777     };
 778 
 779     var devkit_platform = (input.target_cpu == "x86"
 780         ? input.target_os + "_x64"
 781         : input.target_platform);
 782 
 783     var boot_jdk_platform = (input.build_os == "macosx" ? "osx" : input.build_os)
 784         + "-" + input.build_cpu;
 785 
 786     var freetype_version = {
 787         windows_x64: "2.7.1-v120+1.1",
 788         windows_x86: "2.7.1-v120+1.1",




 748         profiles["run-test-jprt"] = concatObjects(profiles["run-test-jprt"], macosxRunTestExtra);
 749         profiles["run-test-prebuilt"] = concatObjects(profiles["run-test-prebuilt"], macosxRunTestExtra);
 750     }
 751 
 752     // Generate the missing platform attributes
 753     profiles = generatePlatformAttributes(profiles);
 754     profiles = generateDefaultMakeTargetsConfigureArg(common, profiles);
 755     return profiles;
 756 };
 757 
 758 /**
 759  * Generate the dependencies part of the configuration
 760  *
 761  * @param input External data to use for generating the configuration
 762  * @param common The common values
 763  * @returns {{}} Dependencies part of configuration
 764  */
 765 var getJibProfilesDependencies = function (input, common) {
 766 
 767     var devkit_platform_revisions = {
 768         linux_x64: "gcc4.9.2-OEL6.4+1.3",
 769         macosx_x64: "Xcode6.3-MacOSX10.9+1.0",
 770         solaris_x64: "SS12u4-Solaris11u1+1.0",
 771         solaris_sparcv9: "SS12u4-Solaris11u1+1.1",
 772         windows_x64: "VS2013SP4+1.0",
 773         linux_aarch64: "gcc-linaro-aarch64-linux-gnu-4.8-2013.11_linux+1.0",
 774         linux_arm: (input.profile != null && input.profile.indexOf("hflt") >= 0
 775                     ? "gcc-linaro-arm-linux-gnueabihf-raspbian-2012.09-20120921_linux+1.0"
 776                     : "arm-linaro-4.7+1.0")
 777     };
 778 
 779     var devkit_platform = (input.target_cpu == "x86"
 780         ? input.target_os + "_x64"
 781         : input.target_platform);
 782 
 783     var boot_jdk_platform = (input.build_os == "macosx" ? "osx" : input.build_os)
 784         + "-" + input.build_cpu;
 785 
 786     var freetype_version = {
 787         windows_x64: "2.7.1-v120+1.1",
 788         windows_x86: "2.7.1-v120+1.1",


< prev index next >