| OLD | NEW |
| 1 # Build ALMOST everything provided by Skia; this should be the default target. | 1 # Build ALMOST everything provided by Skia; this should be the default target. |
| 2 # | 2 # |
| 3 # This omits the following targets that many developers won't want to build: | 3 # This omits the following targets that many developers won't want to build: |
| 4 # - debugger: this requires QT to build | 4 # - debugger: this requires QT to build |
| 5 # | 5 # |
| 6 { | 6 { |
| 7 'variables': { | 7 'variables': { |
| 8 'skia_skip_gui%': 0, | 8 'skia_skip_gui%': 0, |
| 9 }, | 9 }, |
| 10 'targets': [ | 10 'targets': [ |
| (...skipping 11 matching lines...) Expand all Loading... |
| 22 'tools.gyp:tools', | 22 'tools.gyp:tools', |
| 23 'pathops_unittest.gyp:*', | 23 'pathops_unittest.gyp:*', |
| 24 'skpskgr_test.gyp:*', | 24 'skpskgr_test.gyp:*', |
| 25 # 'pdfviewer.gyp:pdfviewer', | 25 # 'pdfviewer.gyp:pdfviewer', |
| 26 'dm.gyp:dm', | 26 'dm.gyp:dm', |
| 27 ], | 27 ], |
| 28 'conditions': [ | 28 'conditions': [ |
| 29 ['skia_os == "android"', { | 29 ['skia_os == "android"', { |
| 30 'dependencies': [ 'android_system.gyp:SampleApp_APK' ], | 30 'dependencies': [ 'android_system.gyp:SampleApp_APK' ], |
| 31 }], | 31 }], |
| 32 ['skia_os == "ios"', { |
| 33 'dependencies!': [ 'SampleApp.gyp:SampleApp' ], |
| 34 }], |
| 32 [ 'skia_skip_gui', | 35 [ 'skia_skip_gui', |
| 33 { | 36 { |
| 34 'dependencies!': [ | 37 'dependencies!': [ |
| 35 'SampleApp.gyp:SampleApp', | 38 'SampleApp.gyp:SampleApp', |
| 36 'skpskgr_test.gyp:*', | 39 'skpskgr_test.gyp:*', |
| 37 ] | 40 ] |
| 38 } | 41 } |
| 39 ] | 42 ] |
| 40 ], | 43 ], |
| 41 }, | 44 }, |
| 42 ], | 45 ], |
| 43 } | 46 } |
| OLD | NEW |