| OLD | NEW |
| 1 # Copyright 2015 Google Inc. | 1 # Copyright 2015 Google Inc. |
| 2 # | 2 # |
| 3 # Use of this source code is governed by a BSD-style license that can be | 3 # Use of this source code is governed by a BSD-style license that can be |
| 4 # found in the LICENSE file. | 4 # found in the LICENSE file. |
| 5 # | 5 # |
| 6 { | 6 { |
| 7 'targets': [ | 7 'targets': [ |
| 8 { | 8 { |
| 9 'target_name': 'SampleApp', | 9 'target_name': 'SampleApp', |
| 10 'type': 'executable', | 10 'type': 'executable', |
| (...skipping 85 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 96 '$(SDKROOT)/System/Library/Frameworks/ImageIO.framework', | 96 '$(SDKROOT)/System/Library/Frameworks/ImageIO.framework', |
| 97 '$(SDKROOT)/System/Library/Frameworks/MobileCoreServices.framework
', | 97 '$(SDKROOT)/System/Library/Frameworks/MobileCoreServices.framework
', |
| 98 ], | 98 ], |
| 99 }, | 99 }, |
| 100 'include_dirs' : [ | 100 'include_dirs' : [ |
| 101 '../experimental/iOSSampleApp', | 101 '../experimental/iOSSampleApp', |
| 102 '../experimental/iOSSampleApp/iPad', | 102 '../experimental/iOSSampleApp/iPad', |
| 103 '../experimental/iOSSampleApp/iPhone', | 103 '../experimental/iOSSampleApp/iPhone', |
| 104 '../experimental/iOSSampleApp/Shared', | 104 '../experimental/iOSSampleApp/Shared', |
| 105 '../include/utils/ios', | 105 '../include/utils/ios', |
| 106 '../src/utils', |
| 106 '../src/views/mac', | 107 '../src/views/mac', |
| 107 ], | 108 ], |
| 108 'xcode_settings' : { | 109 'xcode_settings' : { |
| 109 'INFOPLIST_FILE' : '../experimental/iOSSampleApp/iOSSampleApp-Info.p
list', | 110 'INFOPLIST_FILE' : '../experimental/iOSSampleApp/iOSSampleApp-Info.p
list', |
| 110 }, | 111 }, |
| 111 'xcode_config_file': '../experimental/iOSSampleApp/SkiOSSampleApp-Base
.xcconfig', | 112 'xcode_config_file': '../experimental/iOSSampleApp/SkiOSSampleApp-Base
.xcconfig', |
| 112 'mac_bundle_resources' : [ | 113 'mac_bundle_resources' : [ |
| 113 '../experimental/iOSSampleApp/iPad/MainWindow_iPad.xib', | 114 '../experimental/iOSSampleApp/iPad/MainWindow_iPad.xib', |
| 114 '../experimental/iOSSampleApp/iPhone/MainWindow_iPhone.xib', | 115 '../experimental/iOSSampleApp/iPhone/MainWindow_iPhone.xib', |
| 115 ], | 116 ], |
| 116 }], | 117 }], |
| 117 [ 'skia_gpu == 1', { | 118 [ 'skia_gpu == 1', { |
| 118 'dependencies': [ | 119 'dependencies': [ |
| 119 'gputest.gyp:skgputest', | 120 'gputest.gyp:skgputest', |
| 120 ], | 121 ], |
| 121 }], | 122 }], |
| 122 [ 'not skia_pdf', { | 123 [ 'not skia_pdf', { |
| 123 'dependencies!': [ 'pdf.gyp:pdf' ], | 124 'dependencies!': [ 'pdf.gyp:pdf' ], |
| 124 'dependencies': [ 'pdf.gyp:nopdf' ], | 125 'dependencies': [ 'pdf.gyp:nopdf' ], |
| 125 }], | 126 }], |
| 126 ], | 127 ], |
| 127 }, | 128 }, |
| 128 ], | 129 ], |
| 129 } | 130 } |
| OLD | NEW |