DescriptionImport Objective C Frameworks in components
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}
Committed: https://chromium.googlesource.com/chromium/src/+/69709ac69519ed94ff22744fec5d7d76a7b0d67a
Patch Set 1 #
Total comments: 4
Messages
Total messages: 13 (7 generated)
|