< prev index next >

make/CopyFiles.gmk

Print this page
rev 13762 : 8223147: JFR Backport
8199712: Flight Recorder
8203346: JFR: Inconsistent signature of jfr_add_string_constant
8195817: JFR.stop should require name of recording
8195818: JFR.start should increase autogenerated name by one
8195819: Remove recording=x from jcmd JFR.check output
8203921: JFR thread sampling is missing fixes from JDK-8194552
8203929: Limit amount of data for JFR.dump
8203664: JFR start failure after AppCDS archive created with JFR StartFlightRecording
8003209: JFR events for network utilization
8207392: [PPC64] Implement JFR profiling
Summary: Backport JFR from JDK11. Initial integration
Reviewed-by: neugens


 577     UCRYPTO_CFG_SRC := $(JDK_TOPDIR)/src/closed/share/lib/security/ucrypto-solaris.cfg
 578     UCRYPTO_CFG_DST := $(JDK_OUTPUTDIR)/lib/security/ucrypto-solaris.cfg
 579 
 580     $(UCRYPTO_CFG_DST): $(UCRYPTO_CFG_SRC)
 581         $(call install-file)
 582 
 583     COPY_FILES += $(UCRYPTO_CFG_DST)
 584 
 585   endif
 586 endif
 587 
 588 ##########################################################################################
 589 
 590 $(JDK_OUTPUTDIR)/lib/sound.properties: $(JDK_TOPDIR)/src/share/lib/sound.properties
 591         $(call install-file)
 592 
 593 COPY_FILES += $(JDK_OUTPUTDIR)/lib/sound.properties
 594 
 595 ##########################################################################################
 596 











 597 -include $(CUSTOM_MAKE_DIR)/CopyFiles.gmk


 577     UCRYPTO_CFG_SRC := $(JDK_TOPDIR)/src/closed/share/lib/security/ucrypto-solaris.cfg
 578     UCRYPTO_CFG_DST := $(JDK_OUTPUTDIR)/lib/security/ucrypto-solaris.cfg
 579 
 580     $(UCRYPTO_CFG_DST): $(UCRYPTO_CFG_SRC)
 581         $(call install-file)
 582 
 583     COPY_FILES += $(UCRYPTO_CFG_DST)
 584 
 585   endif
 586 endif
 587 
 588 ##########################################################################################
 589 
 590 $(JDK_OUTPUTDIR)/lib/sound.properties: $(JDK_TOPDIR)/src/share/lib/sound.properties
 591         $(call install-file)
 592 
 593 COPY_FILES += $(JDK_OUTPUTDIR)/lib/sound.properties
 594 
 595 ##########################################################################################
 596 
 597 $(JDK_OUTPUTDIR)/lib/jfr/%: $(JDK_TOPDIR)/src/share/classes/jdk/jfr/conf/%
 598         $(call install-file)
 599 
 600 ifeq ($(ENABLE_JFR), true)
 601   COPY_FILES += $(subst $(JDK_TOPDIR)/src/share/classes/jdk/jfr/conf, \
 602           $(JDK_OUTPUTDIR)/lib/jfr, \
 603           $(wildcard $(JDK_TOPDIR)/src/share/classes/jdk/jfr/conf/*))
 604 endif
 605 
 606 ##########################################################################################
 607 
 608 -include $(CUSTOM_MAKE_DIR)/CopyFiles.gmk
< prev index next >