ae0054e48a
1) Disable SampleApp. Seems like it's totally horked? SkOSFile_iOS.mm is missing about half the functions needed, and SkOSFile_stdio.cpp is double-providing the others. 2) Drop armv6. 3) Switch from putting headers in sources to putting the corresponding directories in includes. 4) Force cast the type of glShaderSource. Something to do with GR_GL_USE_NEW_SHADER_SOURCE_SIGNATURE? After all this, env CC=clang CXX=clang++ GYP_DEFINES=skia_os=ios make builds for me. BUG=skia:2363 R=bsalomon@google.com, epoger@google.com, mtklein@google.com Author: mtklein@chromium.org Review URL: https://codereview.chromium.org/226413005 git-svn-id: http://skia.googlecode.com/svn/trunk@14069 2bbb7eff-a529-9590-31e7-b0007b416f81
60 lines
2.2 KiB
Python
60 lines
2.2 KiB
Python
{
|
|
'conditions' : [
|
|
[ 'skia_os != "ios"', {
|
|
'error': '<!(set GYP_DEFINES=\"skia_os=\'ios\'\")'
|
|
}],
|
|
],
|
|
'targets': [
|
|
{
|
|
'target_name': 'SimpleiOSApp',
|
|
'type': 'executable',
|
|
'mac_bundle' : 1,
|
|
'include_dirs' : [
|
|
'../experimental/iOSSampleApp/Shared',
|
|
'../src/views/mac',
|
|
],
|
|
'sources': [
|
|
'../src/views/ios/SkOSWindow_iOS.mm',
|
|
'../src/views/mac/SkEventNotifier.mm',
|
|
'../experimental/iOSSampleApp/iPad/AppDelegate_iPad.mm',
|
|
'../experimental/iOSSampleApp/iPhone/AppDelegate_iPhone.mm',
|
|
'../experimental/iOSSampleApp/Shared/SkUIView.mm',
|
|
'../experimental/iOSSampleApp/Shared/skia_ios.mm',
|
|
'../experimental/SimpleiOSApp/SimpleApp.mm',
|
|
'../experimental/SimpleiOSApp/SimpleiOSApp-Info.plist',
|
|
],
|
|
'dependencies': [
|
|
'skia_lib.gyp:skia_lib',
|
|
'views.gyp:views',
|
|
'xml.gyp:xml',
|
|
],
|
|
'link_settings': {
|
|
'libraries': [
|
|
'$(SDKROOT)/System/Library/Frameworks/CoreGraphics.framework',
|
|
'$(SDKROOT)/System/Library/Frameworks/CoreText.framework',
|
|
'$(SDKROOT)/System/Library/Frameworks/Foundation.framework',
|
|
'$(SDKROOT)/System/Library/Frameworks/ImageIO.framework',
|
|
'$(SDKROOT)/System/Library/Frameworks/MobileCoreServices.framework',
|
|
'$(SDKROOT)/System/Library/Frameworks/UIKit.framework',
|
|
],
|
|
'libraries!': [
|
|
#remove mac dependencies
|
|
'$(SDKROOT)/System/Library/Frameworks/Cocoa.framework',
|
|
'$(SDKROOT)/System/Library/Frameworks/Foundation.framework',
|
|
'$(SDKROOT)/System/Library/Frameworks/QuartzCore.framework',
|
|
'$(SDKROOT)/System/Library/Frameworks/OpenGL.framework',
|
|
'$(SDKROOT)/System/Library/Frameworks/ApplicationServices.framework',
|
|
],
|
|
},
|
|
'xcode_settings' : {
|
|
'INFOPLIST_FILE' : '../experimental/SimpleiOSApp/SimpleiOSApp-Info.plist',
|
|
},
|
|
'xcode_config_file': '../experimental/iOSSampleApp/SkiOSSampleApp-Base.xcconfig',
|
|
'mac_bundle_resources' : [
|
|
'../experimental/SimpleiOSApp/iPad/MainWindow_iPad.xib',
|
|
'../experimental/SimpleiOSApp/iPhone/MainWindow_iPhone.xib',
|
|
],
|
|
},
|
|
],
|
|
}
|