Changeset 246329 in webkit


Ignore:
Timestamp:
Jun 11, 2019 12:40:24 PM (5 years ago)
Author:
Keith Rollin
Message:

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:

(JavaScriptCoreGenerator):
(WebCoreGenerator):
(WebKitGenerator):

Location:
trunk/Tools
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/Tools/ChangeLog

    r246326 r246329  
     12019-06-11  Keith Rollin  <krollin@apple.com>
     2
     3        Open up xcfilelist processing to more platforms
     4        https://bugs.webkit.org/show_bug.cgi?id=198675
     5        <rdar://problem/51533238>
     6
     7        Reviewed by Jonathan Bedard.
     8
     9        Now that it's been tested, add AppleTV{OS,Simulator} to the set of
     10        platforms on which to perform xcfilelist generation/updating.
     11
     12        * Scripts/webkitpy/generate_xcfilelists_lib/generators.py:
     13        (JavaScriptCoreGenerator):
     14        (WebCoreGenerator):
     15        (WebKitGenerator):
     16
    1172019-06-11  Jonathan Bedard  <jbedard@apple.com>
    218
  • trunk/Tools/Scripts/webkitpy/generate_xcfilelists_lib/generators.py

    r245692 r246329  
    649649
    650650class JavaScriptCoreGenerator(BaseGenerator):
    651     VALID_PLATFORMS = ("macosx", "iosmac", "iphoneos", "iphonesimulator", "watchos", "watchsimulator")
     651    VALID_PLATFORMS = ("macosx", "iosmac", "iphoneos", "iphonesimulator", "watchos", "watchsimulator", "appletvos", "appletvsimulator")
    652652    VALID_CONFIGURATIONS = ("Debug", "Release", "Production", "Profiling")
    653653
     
    666666
    667667class WebCoreGenerator(BaseGenerator):
    668     VALID_PLATFORMS = ("macosx", "iosmac", "iphoneos", "iphonesimulator", "watchos", "watchsimulator")
     668    VALID_PLATFORMS = ("macosx", "iosmac", "iphoneos", "iphonesimulator", "watchos", "watchsimulator", "appletvos", "appletvsimulator")
    669669    VALID_CONFIGURATIONS = ("Debug", "Release", "Production")
    670670
     
    683683
    684684class WebKitGenerator(BaseGenerator):
    685     VALID_PLATFORMS = ("macosx", "iosmac", "iphoneos", "iphonesimulator", "watchos", "watchsimulator")
     685    VALID_PLATFORMS = ("macosx", "iosmac", "iphoneos", "iphonesimulator", "watchos", "watchsimulator", "appletvos", "appletvsimulator")
    686686    VALID_CONFIGURATIONS = ("Debug", "Release", "Production")
    687687
Note: See TracChangeset for help on using the changeset viewer.