Changeset 245476 in webkit
- Timestamp:
- May 17, 2019, 1:36:47 PM (7 years ago)
- Location:
- trunk/Tools
- Files:
-
- 2 edited
-
ChangeLog (modified) (1 diff)
-
Scripts/webkitpy/generate_xcfilelists_lib/generators.py (modified) (3 diffs)
Legend:
- Unmodified
- Added
- Removed
-
trunk/Tools/ChangeLog
r245474 r245476 1 2019-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 1 12 2019-05-17 Keith Rollin <krollin@apple.com> 2 13 -
trunk/Tools/Scripts/webkitpy/generate_xcfilelists_lib/generators.py
r245364 r245476 637 637 638 638 class JavaScriptCoreGenerator(BaseGenerator): 639 VALID_PLATFORMS = ("macosx", "iosmac", "iphoneos", " watchos")639 VALID_PLATFORMS = ("macosx", "iosmac", "iphoneos", "iphonesimulator", "watchos", "watchsimulator") 640 640 VALID_CONFIGURATIONS = ("Debug", "Release", "Production", "Profiling") 641 641 … … 654 654 655 655 class WebCoreGenerator(BaseGenerator): 656 VALID_PLATFORMS = ("macosx", "iosmac", "iphoneos", " watchos")656 VALID_PLATFORMS = ("macosx", "iosmac", "iphoneos", "iphonesimulator", "watchos", "watchsimulator") 657 657 VALID_CONFIGURATIONS = ("Debug", "Release", "Production") 658 658 … … 671 671 672 672 class WebKitGenerator(BaseGenerator): 673 VALID_PLATFORMS = ("macosx", "iosmac", "iphoneos", " watchos")673 VALID_PLATFORMS = ("macosx", "iosmac", "iphoneos", "iphonesimulator", "watchos", "watchsimulator") 674 674 VALID_CONFIGURATIONS = ("Debug", "Release", "Production") 675 675
Note:
See TracChangeset
for help on using the changeset viewer.