| 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 96 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 107 ], | 107 ], |
| 108 'xcode_settings' : { | 108 'xcode_settings' : { |
| 109 'INFOPLIST_FILE' : '../experimental/iOSSampleApp/iOSSampleApp-Info.p
list', | 109 'INFOPLIST_FILE' : '../experimental/iOSSampleApp/iOSSampleApp-Info.p
list', |
| 110 }, | 110 }, |
| 111 'xcode_config_file': '../experimental/iOSSampleApp/SkiOSSampleApp-Base
.xcconfig', | 111 'xcode_config_file': '../experimental/iOSSampleApp/SkiOSSampleApp-Base
.xcconfig', |
| 112 'mac_bundle_resources' : [ | 112 'mac_bundle_resources' : [ |
| 113 '../experimental/iOSSampleApp/iPad/MainWindow_iPad.xib', | 113 '../experimental/iOSSampleApp/iPad/MainWindow_iPad.xib', |
| 114 '../experimental/iOSSampleApp/iPhone/MainWindow_iPhone.xib', | 114 '../experimental/iOSSampleApp/iPhone/MainWindow_iPhone.xib', |
| 115 ], | 115 ], |
| 116 }], | 116 }], |
| 117 [ 'skia_os == "android"', { | |
| 118 'conditions': [ | |
| 119 ['skia_android_framework == 0', { | |
| 120 'dependencies': [ | |
| 121 'android_deps.gyp:Android_EntryPoint', | |
| 122 'skia_launcher.gyp:skia_launcher', | |
| 123 ], | |
| 124 }], | |
| 125 ], | |
| 126 'dependencies!': [ | |
| 127 'experimental.gyp:experimental', | |
| 128 ], | |
| 129 'dependencies': [ | |
| 130 'android_output.gyp:android_output', | |
| 131 'android_deps.gyp:Android_SampleApp', | |
| 132 ], | |
| 133 }], | |
| 134 [ 'skia_gpu == 1', { | 117 [ 'skia_gpu == 1', { |
| 135 'dependencies': [ | 118 'dependencies': [ |
| 136 'gputest.gyp:skgputest', | 119 'gputest.gyp:skgputest', |
| 137 ], | 120 ], |
| 138 }], | 121 }], |
| 139 [ 'not skia_pdf', { | 122 [ 'not skia_pdf', { |
| 140 'dependencies!': [ 'pdf.gyp:pdf' ], | 123 'dependencies!': [ 'pdf.gyp:pdf' ], |
| 141 'dependencies': [ 'pdf.gyp:nopdf' ], | 124 'dependencies': [ 'pdf.gyp:nopdf' ], |
| 142 }], | 125 }], |
| 143 ], | 126 ], |
| 144 }, | 127 }, |
| 145 ], | 128 ], |
| 146 } | 129 } |
| OLD | NEW |