Changeset 261628 in webkit


Ignore:
Timestamp:
May 13, 2020 11:14:16 AM (4 years ago)
Author:
Peng Liu
Message:

Add the feature flags plist file back
https://bugs.webkit.org/show_bug.cgi?id=211816

Reviewed by Jer Noble.

Add the WebKit.plist file to the WebKit project and use it instead of the one from the WebKitAdditions.

  • FeatureFlags/WebKit.plist: Added.
  • WebKit.xcodeproj/project.pbxproj:
Location:
trunk/Source/WebKit
Files:
2 added
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/Source/WebKit/ChangeLog

    r261626 r261628  
     12020-05-13  Peng Liu  <peng.liu6@apple.com>
     2
     3        Add the feature flags plist file back
     4        https://bugs.webkit.org/show_bug.cgi?id=211816
     5
     6        Reviewed by Jer Noble.
     7
     8        Add the WebKit.plist file to the WebKit project and use it instead of the one from the WebKitAdditions.
     9
     10        * FeatureFlags/WebKit.plist: Added.
     11        * WebKit.xcodeproj/project.pbxproj:
     12
    1132020-05-13  Youenn Fablet  <youenn@apple.com>
    214
  • trunk/Source/WebKit/WebKit.xcodeproj/project.pbxproj

    r261599 r261628  
    27592759                1DE0D095211CC21300439B5F /* WKShareSheet.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = WKShareSheet.h; sourceTree = "<group>"; };
    27602760                1DE2DFAC23A959F8003E013A /* RemoteMediaResourceIdentifier.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = RemoteMediaResourceIdentifier.h; sourceTree = "<group>"; };
     2761                1DEC97AC246B691E007C83F4 /* WebKit.plist */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.plist.xml; path = WebKit.plist; sourceTree = "<group>"; };
    27612762                1DFDD0DF23F60E1E00E9B490 /* VideoLayerRemoteCocoa.mm */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.objcpp; path = VideoLayerRemoteCocoa.mm; sourceTree = "<group>"; };
    27622763                1DFDD0E023F60E1F00E9B490 /* VideoLayerRemoteCocoa.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = VideoLayerRemoteCocoa.h; sourceTree = "<group>"; };
     
    56535654                                2D9FB1FF2375209D0049F936 /* GPUProcess */,
    56545655                                C0CE729D1247E71D00BC0EC4 /* Derived Sources */,
     5656                                1DEC97AB246B6865007C83F4 /* FeatureFlags */,
    56555657                                089C1665FE841158C02AAC07 /* Resources */,
    56565658                                C0CE73351247F70E00BC0EC4 /* Scripts */,
     
    65006502                        );
    65016503                        path = cocoa;
     6504                        sourceTree = "<group>";
     6505                };
     6506                1DEC97AB246B6865007C83F4 /* FeatureFlags */ = {
     6507                        isa = PBXGroup;
     6508                        children = (
     6509                                1DEC97AC246B691E007C83F4 /* WebKit.plist */,
     6510                        );
     6511                        path = FeatureFlags;
    65026512                        sourceTree = "<group>";
    65036513                };
     
    1222912239                        );
    1223012240                        inputPaths = (
    12231                                 "${WK_WEBKITADDITIONS_HEADERS_FOLDER_PATH}/WebKit/WebKit.plist",
     12241                                "${SRCROOT}/FeatureFlags/WebKit.plist",
    1223212242                        );
    1223312243                        name = "Copy Feature Flags Plist";
     
    1223912249                        runOnlyForDeploymentPostprocessing = 1;
    1224012250                        shellPath = /bin/sh;
    12241                         shellScript = "if [[ ${WK_PLATFORM_NAME} == \"maccatalyst\" ]]; then\n    exit 0;\nfi\n\nSOURCE_DIR=\"${WK_WEBKITADDITIONS_HEADERS_FOLDER_PATH}/WebKit\"\nDEST_DIR=${INSTALL_ROOT}/${WK_INSTALL_PATH_PREFIX}/${SYSTEM_LIBRARY_DIR}/FeatureFlags/Domain\n\nif [[ ! -d \"${DEST_DIR}\" ]]; then\n    mkdir -p \"${DEST_DIR}\"\nfi\n\nditto \"${SOURCE_DIR}/WebKit.plist\" \"${DEST_DIR}/WebKit.plist\"\n";
     12251                        shellScript = "if [[ ${WK_PLATFORM_NAME} == \"maccatalyst\" ]]; then\n    exit 0;\nfi\n\nSOURCE_DIR=\"${SRCROOT}/FeatureFlags\"\nDEST_DIR=${INSTALL_ROOT}/${WK_INSTALL_PATH_PREFIX}/${SYSTEM_LIBRARY_DIR}/FeatureFlags/Domain\n\nif [[ ! -d \"${DEST_DIR}\" ]]; then\n    mkdir -p \"${DEST_DIR}\"\nfi\n\nditto \"${SOURCE_DIR}/WebKit.plist\" \"${DEST_DIR}/WebKit.plist\"\n";
    1224212252                };
    1224312253                2D7DEBDF21269C9F00B9F73C /* Generate Unified Sources */ = {
Note: See TracChangeset for help on using the changeset viewer.