Title: [263937] trunk/Tools
Revision
263937
Author
[email protected]
Date
2020-07-04 10:18:45 -0700 (Sat, 04 Jul 2020)

Log Message

Make generate-unified-sources.sh not depend on features being listed in FEATURE_DEFINES environment variable
https://bugs.webkit.org/show_bug.cgi?id=212420

* Scripts/generate-unified-sources.sh: Removed --feature-flags from the
arguments passed to generate-unified-source-bundles.rb. Also removed many
unneeded quotes.

Modified Paths

Diff

Modified: trunk/Tools/ChangeLog (263936 => 263937)


--- trunk/Tools/ChangeLog	2020-07-04 16:43:37 UTC (rev 263936)
+++ trunk/Tools/ChangeLog	2020-07-04 17:18:45 UTC (rev 263937)
@@ -1,3 +1,12 @@
+2020-07-04  Darin Adler  <[email protected]>
+
+        Make generate-unified-sources.sh not depend on features being listed in FEATURE_DEFINES environment variable
+        https://bugs.webkit.org/show_bug.cgi?id=212420
+
+        * Scripts/generate-unified-sources.sh: Removed --feature-flags from the
+        arguments passed to generate-unified-source-bundles.rb. Also removed many
+        unneeded quotes.
+
 2020-07-04  Lauro Moura  <[email protected]>
 
         [WebDriver][WPE] Allow running Selenium tests with the WPE WebDriver

Modified: trunk/Tools/TestWebKitAPI/Scripts/generate-unified-sources.sh (263936 => 263937)


--- trunk/Tools/TestWebKitAPI/Scripts/generate-unified-sources.sh	2020-07-04 16:43:37 UTC (rev 263936)
+++ trunk/Tools/TestWebKitAPI/Scripts/generate-unified-sources.sh	2020-07-04 17:18:45 UTC (rev 263937)
@@ -21,4 +21,4 @@
     echo "Using unified source list files: Sources.txt, SourcesCocoa.txt"
 fi
 
-/usr/bin/env ruby "${BUILD_SCRIPTS_DIR}/generate-unified-source-bundles.rb" "--derived-sources-path" "${BUILT_PRODUCTS_DIR}/DerivedSources/TestWebKitAPI" "--source-tree-path" "${SRCROOT}" "--feature-flags" "${FEATURE_DEFINES}" "--max-cpp-bundle-count" "${UnifiedSourceCppFileCount}" "--max-obj-c-bundle-count" "${UnifiedSourceMmFileCount}" "Sources.txt" "SourcesCocoa.txt" "${ARGS[@]}" > /dev/null
+/usr/bin/env ruby "${BUILD_SCRIPTS_DIR}/generate-unified-source-bundles.rb" --derived-sources-path "${BUILT_PRODUCTS_DIR}/DerivedSources/TestWebKitAPI" --source-tree-path "${SRCROOT}" --max-cpp-bundle-count ${UnifiedSourceCppFileCount} --max-obj-c-bundle-count ${UnifiedSourceMmFileCount} Sources.txt SourcesCocoa.txt "${ARGS[@]}" > /dev/null
_______________________________________________
webkit-changes mailing list
[email protected]
https://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to