| 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 # Build ALMOST everything provided by Skia; this should be the default target. | 5 # Build ALMOST everything provided by Skia; this should be the default target. |
| 6 # | 6 # |
| 7 # This omits the following targets that many developers won't want to build: | 7 # This omits the following targets that many developers won't want to build: |
| 8 # - debugger: this requires QT to build | 8 # - debugger: this requires QT to build |
| 9 # | 9 # |
| 10 { | 10 { |
| (...skipping 11 matching lines...) Expand all Loading... |
| 22 'bench.gyp:*', | 22 'bench.gyp:*', |
| 23 'example.gyp:HelloWorld', | 23 'example.gyp:HelloWorld', |
| 24 'SampleApp.gyp:SampleApp', | 24 'SampleApp.gyp:SampleApp', |
| 25 'tools.gyp:tools', | 25 'tools.gyp:tools', |
| 26 'pathops_unittest.gyp:*', | 26 'pathops_unittest.gyp:*', |
| 27 'pathops_skpclip.gyp:*', | 27 'pathops_skpclip.gyp:*', |
| 28 'dm.gyp:dm', | 28 'dm.gyp:dm', |
| 29 'visualbench.gyp:visualbench', | 29 'visualbench.gyp:visualbench', |
| 30 'fuzz.gyp:fuzz', | 30 'fuzz.gyp:fuzz', |
| 31 'kilobench.gyp:kilobench', | 31 'kilobench.gyp:kilobench', |
| 32 'vulkanviewer.gyp:vulkanviewer', |
| 32 ], | 33 ], |
| 33 'conditions': [ | 34 'conditions': [ |
| 34 [ 'skia_gpu == 0', { | 35 [ 'skia_gpu == 0', { |
| 35 'dependencies!': [ | 36 'dependencies!': [ |
| 36 'visualbench.gyp:visualbench', | 37 'visualbench.gyp:visualbench', |
| 37 'kilobench.gyp:kilobench', | 38 'kilobench.gyp:kilobench', |
| 39 'vulkanviewer.gyp:vulkanviewer', |
| 38 ] | 40 ] |
| 39 }], | 41 }], |
| 40 [ 'skia_os != "android" and skia_os != "linux"', { | 42 [ 'skia_os != "android" and skia_os != "linux"', { |
| 41 'dependencies!': [ | 43 'dependencies!': [ |
| 42 'kilobench.gyp:kilobench', | 44 'kilobench.gyp:kilobench', |
| 43 ], | 45 ], |
| 44 }], | 46 }], |
| 45 [ 'skia_gpu == 0 or skia_os == "android"', { | 47 [ 'skia_gpu == 0 or skia_os == "android"', { |
| 46 'dependencies!': [ | 48 'dependencies!': [ |
| 47 'example.gyp:HelloWorld', | 49 'example.gyp:HelloWorld', |
| (...skipping 18 matching lines...) Expand all Loading... |
| 66 'visualbench.gyp:visualbench', | 68 'visualbench.gyp:visualbench', |
| 67 ], | 69 ], |
| 68 'dependencies': ['iOSShell.gyp:iOSShell' ], | 70 'dependencies': ['iOSShell.gyp:iOSShell' ], |
| 69 }], | 71 }], |
| 70 ['skia_os == "mac" or skia_os == "linux"', { | 72 ['skia_os == "mac" or skia_os == "linux"', { |
| 71 'dependencies': [ | 73 'dependencies': [ |
| 72 'nanomsg.gyp:*' , | 74 'nanomsg.gyp:*' , |
| 73 'skiaserve.gyp:skiaserve', | 75 'skiaserve.gyp:skiaserve', |
| 74 ], | 76 ], |
| 75 }], | 77 }], |
| 78 [ 'skia_vulkan == 0 or skia_os != "win"', { |
| 79 'dependencies!': [ |
| 80 'vulkanviewer.gyp:vulkanviewer', |
| 81 ], |
| 82 }], |
| 76 [ 'skia_skip_gui', | 83 [ 'skia_skip_gui', |
| 77 { | 84 { |
| 78 'dependencies!': [ | 85 'dependencies!': [ |
| 79 'example.gyp:HelloWorld', | 86 'example.gyp:HelloWorld', |
| 80 'SampleApp.gyp:SampleApp', | 87 'SampleApp.gyp:SampleApp', |
| 81 'visualbench.gyp:visualbench', | 88 'visualbench.gyp:visualbench', |
| 82 ] | 89 ] |
| 83 } | 90 } |
| 84 ], | 91 ], |
| 85 ], | 92 ], |
| 86 }, | 93 }, |
| 87 ], | 94 ], |
| 88 } | 95 } |
| OLD | NEW |