⚠ Archived content — this site is no longer maintained.   Current WebKit documentation is at docs.webkit.org.

Changeset 245476 in webkit


Ignore:
Timestamp:
May 17, 2019, 1:36:47 PM (7 years ago)
Author:
Keith Rollin
Message:

Unreviewed build fix.

Teach generate-xcfilelists about iphonesimulator.

  • Scripts/webkitpy/generate_xcfilelists_lib/generators.py:

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

Location:
trunk/Tools
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/Tools/ChangeLog

    r245474 r245476  
     12019-05-17  Keith Rollin  <krollin@apple.com>
     2
     3        Unreviewed build fix.
     4
     5        Teach generate-xcfilelists about iphonesimulator.
     6
     7        * Scripts/webkitpy/generate_xcfilelists_lib/generators.py:
     8        (JavaScriptCoreGenerator):
     9        (WebCoreGenerator):
     10        (WebKitGenerator):
     11
    1122019-05-17  Keith Rollin  <krollin@apple.com>
    213
  • trunk/Tools/Scripts/webkitpy/generate_xcfilelists_lib/generators.py

    r245364 r245476  
    637637
    638638class JavaScriptCoreGenerator(BaseGenerator):
    639     VALID_PLATFORMS = ("macosx", "iosmac", "iphoneos", "watchos")
     639    VALID_PLATFORMS = ("macosx", "iosmac", "iphoneos", "iphonesimulator", "watchos", "watchsimulator")
    640640    VALID_CONFIGURATIONS = ("Debug", "Release", "Production", "Profiling")
    641641
     
    654654
    655655class WebCoreGenerator(BaseGenerator):
    656     VALID_PLATFORMS = ("macosx", "iosmac", "iphoneos", "watchos")
     656    VALID_PLATFORMS = ("macosx", "iosmac", "iphoneos", "iphonesimulator", "watchos", "watchsimulator")
    657657    VALID_CONFIGURATIONS = ("Debug", "Release", "Production")
    658658
     
    671671
    672672class WebKitGenerator(BaseGenerator):
    673     VALID_PLATFORMS = ("macosx", "iosmac", "iphoneos", "watchos")
     673    VALID_PLATFORMS = ("macosx", "iosmac", "iphoneos", "iphonesimulator", "watchos", "watchsimulator")
    674674    VALID_CONFIGURATIONS = ("Debug", "Release", "Production")
    675675
Note: See TracChangeset for help on using the changeset viewer.