936b73424f
skia_ios.mm Get the app's Documents directory and pass use it to set the resource path. This is a quick hack which will be replaced by a new application that is a tiny shim around a command line tool. SkImageEncoder.h SkForceLinking.cpp SkImageDecoder_CG.cpp Add support for FORCE_LINKING so iOS sees the PNG encoder and others. SkFloatBits.cpp SkPoint.cpp Handle denormalized numbers that are floored by the iOS ARM processor. SkImageDecoder_iOS.mm Remove empty encoder factory. SkTouchGesture.cpp Return early on empty state on touch rather than aborting (crashing) JpegTest.cpp Hal via stackoverflow.com says partial jpegs can be gray as well. skia_test.cpp Remove crash handler call for now to avoid link failure. OverwriteLine.h Remove fancy line overwrite for iOS. Resources.cpp Add interface to set resource directory based on runtime query. BUG=skia:2736 skia:2737 skia:2738 R=reed@google.com, halcanary@google.com, mtklein@google.com, tfarina@chromium.org Author: caryclark@google.com Review URL: https://codereview.chromium.org/373383003
86 lines
3.3 KiB
Python
86 lines
3.3 KiB
Python
#
|
|
{
|
|
'conditions' : [
|
|
[ 'skia_os == "ios"', {
|
|
'targets': [
|
|
{
|
|
'target_name': 'iOSShell',
|
|
'type': 'executable',
|
|
'mac_bundle' : 1,
|
|
'includes': [
|
|
'tests.gypi',
|
|
'pathops_unittest.gypi',
|
|
],
|
|
'dependencies': [
|
|
'tools.gyp:crash_handler',
|
|
'views.gyp:views',
|
|
'xml.gyp:xml',
|
|
],
|
|
'sources': [
|
|
'../tests/skia_test.cpp',
|
|
'../tools/iOSShell.cpp',
|
|
'../src/views/mac/SkEventNotifier.mm',
|
|
'../experimental/iOSSampleApp/SkiOSSampleApp-Base.xcconfig',
|
|
'../experimental/iOSSampleApp/SkiOSSampleApp-Debug.xcconfig',
|
|
'../experimental/iOSSampleApp/SkiOSSampleApp-Release.xcconfig',
|
|
'../experimental/iOSShell/iOSShell-Info.plist',
|
|
'../experimental/iOSSampleApp/Shared/SkUIRootViewController.mm',
|
|
'../experimental/iOSSampleApp/Shared/SkUIView.mm',
|
|
'../experimental/iOSSampleApp/Shared/skia_ios.mm',
|
|
|
|
# iPad
|
|
'../experimental/iOSSampleApp/iPad/AppDelegate_iPad.mm',
|
|
'../experimental/iOSSampleApp/iPad/SkUISplitViewController.mm',
|
|
'../experimental/iOSSampleApp/iPad/MainWindow_iPad.xib',
|
|
|
|
# iPhone
|
|
'../experimental/iOSSampleApp/iPhone/AppDelegate_iPhone.mm',
|
|
'../experimental/iOSSampleApp/iPhone/SkUINavigationController.mm',
|
|
'../experimental/iOSSampleApp/iPhone/MainWindow_iPhone.xib',
|
|
|
|
'../src/views/ios/SkOSWindow_iOS.mm',
|
|
'../src/utils/ios/SkStream_NSData.mm',
|
|
'../src/utils/mac/SkCreateCGImageRef.cpp',
|
|
],
|
|
'link_settings': {
|
|
'libraries': [
|
|
'$(SDKROOT)/System/Library/Frameworks/CoreFoundation.framework',
|
|
'$(SDKROOT)/System/Library/Frameworks/CoreGraphics.framework',
|
|
'$(SDKROOT)/System/Library/Frameworks/CoreText.framework',
|
|
'$(SDKROOT)/System/Library/Frameworks/UIKit.framework',
|
|
'$(SDKROOT)/System/Library/Frameworks/Foundation.framework',
|
|
'$(SDKROOT)/System/Library/Frameworks/QuartzCore.framework',
|
|
'$(SDKROOT)/System/Library/Frameworks/OpenGLES.framework',
|
|
'$(SDKROOT)/System/Library/Frameworks/ImageIO.framework',
|
|
'$(SDKROOT)/System/Library/Frameworks/MobileCoreServices.framework',
|
|
],
|
|
},
|
|
'include_dirs' : [
|
|
'../experimental/iOSSampleApp',
|
|
'../experimental/iOSSampleApp/iPad',
|
|
'../experimental/iOSSampleApp/iPhone',
|
|
'../experimental/iOSSampleApp/Shared',
|
|
'../include/utils/ios',
|
|
'../src/views/mac',
|
|
],
|
|
'xcode_settings' : {
|
|
'INFOPLIST_FILE' : '../experimental/iOSShell/iOSShell-Info.plist',
|
|
},
|
|
'xcode_config_file': '../experimental/iOSSampleApp/SkiOSSampleApp-Base.xcconfig',
|
|
'mac_bundle_resources' : [
|
|
'../experimental/iOSSampleApp/iPad/MainWindow_iPad.xib',
|
|
'../experimental/iOSSampleApp/iPhone/MainWindow_iPhone.xib',
|
|
],
|
|
'conditions' : [
|
|
[ 'skia_gpu == 1', {
|
|
'dependencies': [
|
|
'gputest.gyp:skgputest',
|
|
],
|
|
}],
|
|
],
|
|
},
|
|
],
|
|
}],
|
|
]
|
|
}
|