Title: [261805] trunk/Source/WebCore
Revision
261805
Author
commit-qu...@webkit.org
Date
2020-05-18 03:29:54 -0700 (Mon, 18 May 2020)

Log Message

Clean up media controls content for Apple platforms
https://bugs.webkit.org/show_bug.cgi?id=212011
<rdar://problem/63298588>

Patch by Antoine Quint <grao...@apple.com> on 2020-05-18
Reviewed by Dean Jackson.

We strip Copyright and other comments from the CSS and JS media controls files.

* WebCore.xcodeproj/project.pbxproj:

Modified Paths

Diff

Modified: trunk/Source/WebCore/ChangeLog (261804 => 261805)


--- trunk/Source/WebCore/ChangeLog	2020-05-18 10:03:12 UTC (rev 261804)
+++ trunk/Source/WebCore/ChangeLog	2020-05-18 10:29:54 UTC (rev 261805)
@@ -1,3 +1,15 @@
+2020-05-18  Antoine Quint  <grao...@apple.com>
+
+        Clean up media controls content for Apple platforms
+        https://bugs.webkit.org/show_bug.cgi?id=212011
+        <rdar://problem/63298588>
+
+        Reviewed by Dean Jackson.
+
+        We strip Copyright and other comments from the CSS and JS media controls files.
+
+        * WebCore.xcodeproj/project.pbxproj:
+
 2020-05-18  Alicia Boya GarcĂ­a  <ab...@igalia.com>
 
         [GStreamer][MediaSource] Remove orphaned tracks in updateTracks()

Modified: trunk/Source/WebCore/WebCore.xcodeproj/project.pbxproj (261804 => 261805)


--- trunk/Source/WebCore/WebCore.xcodeproj/project.pbxproj	2020-05-18 10:03:12 UTC (rev 261804)
+++ trunk/Source/WebCore/WebCore.xcodeproj/project.pbxproj	2020-05-18 10:29:54 UTC (rev 261805)
@@ -34093,7 +34093,7 @@
 			);
 			runOnlyForDeploymentPostprocessing = 0;
 			shellPath = /bin/sh;
-			shellScript = "SRC_DIR=\"$SRCROOT/Modules/modern-media-controls\"\nDST_DIR=\"$BUILT_PRODUCTS_DIR/$UNLOCALIZED_RESOURCES_FOLDER_PATH/modern-media-controls\"\n\nmkdir -p \"$DST_DIR\"\n\nif [ \"${WK_PLATFORM_NAME}\" == \"macosx\" ]; then\n    IMG_OS_PREFIX=\"macOS\"\nelse\n    if [[ \"${WK_PLATFORM_NAME}\" == *\"watch\"* ]]; then\n        IMG_OS_PREFIX=\"watchOS\"\n    else\n        IMG_OS_PREFIX=\"iOS\"\n    fi\nfi\n\nif [ -n \"$IMG_OS_PREFIX\" ]; then\nrsync -aq --exclude \".svn\" --exclude \".DS_Store\" \"$SRC_DIR/images/$IMG_OS_PREFIX/\" \"$DST_DIR/images\"\nfi\n\ncd \"$SRC_DIR\"\ncat controls/*.css > \"$DST_DIR/modern-media-controls.css\"\n             cat `cat js-files` > \"$DST_DIR/modern-media-controls.js\"\n";
+			shellScript = "SRC_DIR=\"$SRCROOT/Modules/modern-media-controls\"\nDST_DIR=\"$BUILT_PRODUCTS_DIR/$UNLOCALIZED_RESOURCES_FOLDER_PATH/modern-media-controls\"\n\nmkdir -p \"$DST_DIR\"\n\nif [ \"${WK_PLATFORM_NAME}\" == \"macosx\" ]; then\n    IMG_OS_PREFIX=\"macOS\"\nelse\n    if [[ \"${WK_PLATFORM_NAME}\" == *\"watch\"* ]]; then\n        IMG_OS_PREFIX=\"watchOS\"\n    else\n        IMG_OS_PREFIX=\"iOS\"\n    fi\nfi\n\nif [ -n \"$IMG_OS_PREFIX\" ]; then\nrsync -aq --exclude \".svn\" --exclude \".DS_Store\" \"$SRC_DIR/images/$IMG_OS_PREFIX/\" \"$DST_DIR/images\"\nfi\n\ncd \"$SRC_DIR\"\ncat controls/*.css | perl -0777 -pe 's{/\\*.*?\\*/}{}gs' > \"$DST_DIR/modern-media-controls.css\"\ncat `cat js-files` | perl -0777 -pe 's{/\\*.*?\\*/}{}gs' > \"$DST_DIR/modern-media-controls.js\"\n"
 ;
 		};
 		A5E79CEC1E67F2CF00FB8153 /* Make Frameworks Symbolic Link */ = {
 			isa = PBXShellScriptBuildPhase;
_______________________________________________
webkit-changes mailing list
webkit-changes@lists.webkit.org
https://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to