| 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 'conditions' : [ | 7 'conditions' : [ |
| 8 [ 'skia_os == "ios"', { | 8 [ 'skia_os == "ios"', { |
| 9 'targets': [ | 9 'targets': [ |
| 10 { | 10 { |
| 11 'target_name': 'iOSShell', | 11 'target_name': 'iOSShell', |
| 12 'type': 'executable', | 12 'type': 'executable', |
| 13 'mac_bundle' : 1, | 13 'mac_bundle' : 1, |
| 14 'includes': [ | 14 'includes': [ |
| 15 'bench.gypi', | 15 'bench.gypi', |
| 16 'dm.gypi', | 16 'dm.gypi', |
| 17 ], | 17 ], |
| 18 'dependencies': [ | 18 'dependencies': [ |
| 19 'tools.gyp:crash_handler', | 19 'tools.gyp:crash_handler', |
| 20 'tools.gyp:timer', | 20 'tools.gyp:timer', |
| 21 'views.gyp:views', | 21 'views.gyp:views', |
| 22 'xml.gyp:xml', | 22 'xml.gyp:xml', |
| 23 ], | 23 ], |
| 24 'sources': [ | 24 'sources': [ |
| 25 '../bench/CodecBench.cpp', | |
| 26 '../bench/DecodingBench.cpp', | |
| 27 '../bench/DecodingSubsetBench.cpp', | |
| 28 '../bench/GMBench.cpp', | |
| 29 '../bench/RecordingBench.cpp', | |
| 30 '../bench/SKPBench.cpp', | |
| 31 '../bench/SKPAnimationBench.cpp', | |
| 32 '../bench/nanobench.cpp', | |
| 33 '../tests/skia_test.cpp', | 25 '../tests/skia_test.cpp', |
| 34 '../tools/iOSShell.cpp', | 26 '../tools/iOSShell.cpp', |
| 35 '../src/views/mac/SkEventNotifier.mm', | 27 '../src/views/mac/SkEventNotifier.mm', |
| 36 '../experimental/iOSSampleApp/SkiOSSampleApp-Base.xcconfig', | 28 '../experimental/iOSSampleApp/SkiOSSampleApp-Base.xcconfig', |
| 37 '../experimental/iOSSampleApp/SkiOSSampleApp-Debug.xcconfig', | 29 '../experimental/iOSSampleApp/SkiOSSampleApp-Debug.xcconfig', |
| 38 '../experimental/iOSSampleApp/SkiOSSampleApp-Release.xcconfig', | 30 '../experimental/iOSSampleApp/SkiOSSampleApp-Release.xcconfig', |
| 39 '../experimental/iOSShell/iOSShell-Info.plist', | 31 '../experimental/iOSShell/iOSShell-Info.plist', |
| 40 '../experimental/iOSSampleApp/Shared/SkUIRootViewController.mm', | 32 '../experimental/iOSSampleApp/Shared/SkUIRootViewController.mm', |
| 41 '../experimental/iOSSampleApp/Shared/SkUIView.mm', | 33 '../experimental/iOSSampleApp/Shared/SkUIView.mm', |
| 42 '../experimental/iOSSampleApp/Shared/skia_ios.mm', | 34 '../experimental/iOSSampleApp/Shared/skia_ios.mm', |
| (...skipping 46 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 89 'dependencies': [ | 81 'dependencies': [ |
| 90 'gputest.gyp:skgputest', | 82 'gputest.gyp:skgputest', |
| 91 ], | 83 ], |
| 92 }], | 84 }], |
| 93 ], | 85 ], |
| 94 }, | 86 }, |
| 95 ], | 87 ], |
| 96 }], | 88 }], |
| 97 ] | 89 ] |
| 98 } | 90 } |
| OLD | NEW |