Modified: trunk/Tools/ChangeLog (246328 => 246329)
--- trunk/Tools/ChangeLog 2019-06-11 19:33:57 UTC (rev 246328)
+++ trunk/Tools/ChangeLog 2019-06-11 19:40:24 UTC (rev 246329)
@@ -1,3 +1,19 @@
+2019-06-11 Keith Rollin <[email protected]>
+
+ Open up xcfilelist processing to more platforms
+ https://bugs.webkit.org/show_bug.cgi?id=198675
+ <rdar://problem/51533238>
+
+ Reviewed by Jonathan Bedard.
+
+ Now that it's been tested, add AppleTV{OS,Simulator} to the set of
+ platforms on which to perform xcfilelist generation/updating.
+
+ * Scripts/webkitpy/generate_xcfilelists_lib/generators.py:
+ (_javascript_CoreGenerator):
+ (WebCoreGenerator):
+ (WebKitGenerator):
+
2019-06-11 Jonathan Bedard <[email protected]>
webkitpy: Fix device ASan reporting, add testing for report configurations
Modified: trunk/Tools/Scripts/webkitpy/generate_xcfilelists_lib/generators.py (246328 => 246329)
--- trunk/Tools/Scripts/webkitpy/generate_xcfilelists_lib/generators.py 2019-06-11 19:33:57 UTC (rev 246328)
+++ trunk/Tools/Scripts/webkitpy/generate_xcfilelists_lib/generators.py 2019-06-11 19:40:24 UTC (rev 246329)
@@ -648,7 +648,7 @@
class _javascript_CoreGenerator(BaseGenerator):
- VALID_PLATFORMS = ("macosx", "iosmac", "iphoneos", "iphonesimulator", "watchos", "watchsimulator")
+ VALID_PLATFORMS = ("macosx", "iosmac", "iphoneos", "iphonesimulator", "watchos", "watchsimulator", "appletvos", "appletvsimulator")
VALID_CONFIGURATIONS = ("Debug", "Release", "Production", "Profiling")
@util.LogEntryExit
@@ -665,7 +665,7 @@
class WebCoreGenerator(BaseGenerator):
- VALID_PLATFORMS = ("macosx", "iosmac", "iphoneos", "iphonesimulator", "watchos", "watchsimulator")
+ VALID_PLATFORMS = ("macosx", "iosmac", "iphoneos", "iphonesimulator", "watchos", "watchsimulator", "appletvos", "appletvsimulator")
VALID_CONFIGURATIONS = ("Debug", "Release", "Production")
@util.LogEntryExit
@@ -682,7 +682,7 @@
class WebKitGenerator(BaseGenerator):
- VALID_PLATFORMS = ("macosx", "iosmac", "iphoneos", "iphonesimulator", "watchos", "watchsimulator")
+ VALID_PLATFORMS = ("macosx", "iosmac", "iphoneos", "iphonesimulator", "watchos", "watchsimulator", "appletvos", "appletvsimulator")
VALID_CONFIGURATIONS = ("Debug", "Release", "Production")
@util.LogEntryExit