• olivierrobin's avatar
    Import Objective C Frameworks in components · 69709ac6
    olivierrobin authored
    The Objective-C frameworks must be imported and not included.
    Command to find Objective-C frameworks
    dir="`xcode-select -p`/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS.sdk/System/Library/Frameworks";
    for f in `ls $dir`; do
      name=${f%%.framework};
      grep "^\s*#import " $dir/$f/Headers/$name.h > /dev/null 2>/dev/null;
      if [ "$?" = "0" ]; then
        echo $name;
      fi;
    done
    
    BUG=677965
    
    Review-Url: https://codereview.chromium.org/2606753004
    Cr-Commit-Position: refs/heads/master@{#441912}
    69709ac6
account_consistency_service.mm 17.5 KB