Title: [245476] trunk/Tools
Revision
245476
Author
[email protected]
Date
2019-05-17 13:36:47 -0700 (Fri, 17 May 2019)

Log Message

Unreviewed build fix.

Teach generate-xcfilelists about iphonesimulator.

* Scripts/webkitpy/generate_xcfilelists_lib/generators.py:
(_javascript_CoreGenerator):
(WebCoreGenerator):
(WebKitGenerator):

Modified Paths

Diff

Modified: trunk/Tools/ChangeLog (245475 => 245476)


--- trunk/Tools/ChangeLog	2019-05-17 20:34:42 UTC (rev 245475)
+++ trunk/Tools/ChangeLog	2019-05-17 20:36:47 UTC (rev 245476)
@@ -1,5 +1,16 @@
 2019-05-17  Keith Rollin  <[email protected]>
 
+        Unreviewed build fix.
+
+        Teach generate-xcfilelists about iphonesimulator.
+
+        * Scripts/webkitpy/generate_xcfilelists_lib/generators.py:
+        (_javascript_CoreGenerator):
+        (WebCoreGenerator):
+        (WebKitGenerator):
+
+2019-05-17  Keith Rollin  <[email protected]>
+
         Re-enable generate-xcfilelists
         https://bugs.webkit.org/show_bug.cgi?id=197933
         <rdar://problem/50831677>

Modified: trunk/Tools/Scripts/webkitpy/generate_xcfilelists_lib/generators.py (245475 => 245476)


--- trunk/Tools/Scripts/webkitpy/generate_xcfilelists_lib/generators.py	2019-05-17 20:34:42 UTC (rev 245475)
+++ trunk/Tools/Scripts/webkitpy/generate_xcfilelists_lib/generators.py	2019-05-17 20:36:47 UTC (rev 245476)
@@ -636,7 +636,7 @@
 
 
 class _javascript_CoreGenerator(BaseGenerator):
-    VALID_PLATFORMS = ("macosx", "iosmac", "iphoneos", "watchos")
+    VALID_PLATFORMS = ("macosx", "iosmac", "iphoneos", "iphonesimulator", "watchos", "watchsimulator")
     VALID_CONFIGURATIONS = ("Debug", "Release", "Production", "Profiling")
 
     @util.LogEntryExit
@@ -653,7 +653,7 @@
 
 
 class WebCoreGenerator(BaseGenerator):
-    VALID_PLATFORMS = ("macosx", "iosmac", "iphoneos", "watchos")
+    VALID_PLATFORMS = ("macosx", "iosmac", "iphoneos", "iphonesimulator", "watchos", "watchsimulator")
     VALID_CONFIGURATIONS = ("Debug", "Release", "Production")
 
     @util.LogEntryExit
@@ -670,7 +670,7 @@
 
 
 class WebKitGenerator(BaseGenerator):
-    VALID_PLATFORMS = ("macosx", "iosmac", "iphoneos", "watchos")
+    VALID_PLATFORMS = ("macosx", "iosmac", "iphoneos", "iphonesimulator", "watchos", "watchsimulator")
     VALID_CONFIGURATIONS = ("Debug", "Release", "Production")
 
     @util.LogEntryExit
_______________________________________________
webkit-changes mailing list
[email protected]
https://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to