Changeset 204932 in webkit


Ignore:
Timestamp:
Aug 24, 2016, 2:17:54 PM (9 years ago)
Author:
andersca@apple.com
Message:

Build the platform name dynamically for the phony WebKitLegacy framework
https://bugs.webkit.org/show_bug.cgi?id=161163

Reviewed by Dan Bernstein.

  • Configurations/WebKitLegacyStub.iOS.tbd:
  • WebCore.xcodeproj/project.pbxproj:
Location:
trunk/Source/WebCore
Files:
3 edited

Legend:

Unmodified
Added
Removed
  • trunk/Source/WebCore/ChangeLog

    r204923 r204932  
     12016-08-24  Anders Carlsson  <andersca@apple.com>
     2
     3        Build the platform name dynamically for the phony WebKitLegacy framework
     4        https://bugs.webkit.org/show_bug.cgi?id=161163
     5
     6        Reviewed by Dan Bernstein.
     7
     8        * Configurations/WebKitLegacyStub.iOS.tbd:
     9        * WebCore.xcodeproj/project.pbxproj:
     10
    1112016-08-24  Chris Dumez  <cdumez@apple.com>
    212
  • trunk/Source/WebCore/Configurations/WebKitLegacyStub.iOS.tbd

    r204843 r204932  
    11---
    22archs:           [ armv7, armv7s, arm64, i386, x86_64 ]
    3 platform:        ios
     3platform:        TBD_PLATFORM
    44install-name:    /System/Library/PrivateFrameworks/WebKitLegacy.framework/WebKitLegacy
    55current-version: 603.1.3
  • trunk/Source/WebCore/WebCore.xcodeproj/project.pbxproj

    r204879 r204932  
    2715827158                        runOnlyForDeploymentPostprocessing = 0;
    2715927159                        shellPath = /bin/sh;
    27160                         shellScript = "ditto \"${SRCROOT}/Configurations/WebKitLegacyStub.iOS.tbd\" \"${BUILT_PRODUCTS_DIR}/DerivedSources/WebCore/PhonyWebKitLegacy/WebKitLegacy.framework/WebKitLegacy.tbd\"";
     27160                        shellScript = "set -e\n\ncase $PLATFORM_NAME in\niphone*)\n    TBD_PLATFORM=ios\n    ;;\nappletv*)\n    TBD_PLATFORM=tvos\n    ;;\nesac\n\nif [[ -n $TBD_PLATFORM ]]; then\n    sed -E s/\\TBD_PLATFORM/$TBD_PLATFORM/ \"${SCRIPT_INPUT_FILE_0}\" > \"${SCRIPT_OUTPUT_FILE_0}\"\nfi\n";
    2716127161                };
    2716227162                37A1EAA3142699BC0087F425 /* Check For Inappropriate Objective-C Class Names */ = {
Note: See TracChangeset for help on using the changeset viewer.